Martin010
Forum Replies Created
-
You do this in the same way.
Use firebug to determine what the id’s or classes are.
If you want elements to be on top of each other you can
use z-index in your stylesheet to order them, the highest number will be on top.Forum: Themes and Templates
In reply to: Space at end of home page after footerTry adding a float:left;
Forum: Themes and Templates
In reply to: Need help with a few small problemsDon’t know how to add buttons.
They should come with the calendar.Forum: Themes and Templates
In reply to: Need help with a few small problemsthere are 2 td’s, one with id=prev and one with id=next.
<tfoot>
<tr>
<td class=”pad” id=”prev” colspan=”3″> </td>
<td class=”pad”> </td>
<td class=”pad” id=”next” colspan=”3″> </td>
</tr>
</tfoot>This suggests that there should buttons/links to scroll through the months.
—————————————————
When I view your style sheet, the classes I mentioned are there.
It should work.It does with firebug
https://mytestsite.site88.net/wp-content/themes/news/style.css
Is this the stylesheet you changed?
—————————————————
3)
If you remove the border in the code below the white line will dissapeare,
but also will the border on all the other classes and id’s.#sidebar-primary .widget-inside, #sidebar-secondary .widget-inside, .widget ul li, .image-stream .widget-inside div, .widget-newsletter .newsletter-wrap, #sidebar-primary .search-form, #sidebar-secondary .search-form, .textwidget, #sidebar-primary .ui-tabs, #sidebar-secondary .ui-tabs {
background: none repeat scroll 0 0 #0F0F0F;
border: 1px solid #000000;
height: 1%;
}
So place the following after the above.
#sidebar-primary .ui-tabs{border:none;}Some other things will change also.
Thre are 4 classes on this div.
<div class=”ui-tabs ui-widget ui-widget-content ui-corner-all”>you can override them separatly like the previous one.
————————————————–
For the footer I’m not quit sure what mean, you have a footer.
But in the footer.php you can replace all with just HTML.
I’m not if this has to be bewteen php-tags but it works.
——————————————————
All for nowForum: Themes and Templates
In reply to: Need help with a few small problemsI think the white line is a divider when there are more than 1 responses
If you dont want it remove the border-top or set it to 0px.
I would suggest making it black.ol.comment-list {
border-top: 1px solid #E5E5E5;
margin: 1px 1px 8px;
}Forum: Themes and Templates
In reply to: Need help with a few small problems1)
For the header try adding:#header h1#site-title{font-size:***px;}
For the posts try adding:
h2.entry-title {font-size:***px;}
Place these add the bottom of your stylesheet
Don’t forget to fill in the fontsizeForum: Themes and Templates
In reply to: Need help with a few small problems2)
This should make your borders black.
Replace your classes with the following.(back it up first).widget-calendar th {
background: url(“images/bg-sidebar-calendar-th.png”) no-repeat scroll 0 top transparent;
border-bottom: 1px solid #000000;
border-left: 1px solid #000000;
border-top: 1px solid #000000;
padding: 4px 0 5px;
text-align: center;
}.widget-calendar td {
background: url(“images/bg-sidebar-calendar-td.png”) no-repeat scroll 0 bottom transparent;
border-bottom: 1px solid #000000;
border-left: 1px solid #000000;
padding: 4px 10px 5px;
}.widget-calendar table {
background: none repeat scroll 0 0 #E0E0E0;
border-right: 1px solid #000000;
margin: 0;
width: 259px;
}If you want to remove the extra row, you have delete the following in the code.
But there seems to be something missing in the calendar.
Look at the id’s.<tfoot>
<tr>
<td class=”pad” id=”prev” colspan=”3″> </td>
<td class=”pad”> </td>
<td class=”pad” id=”next” colspan=”3″> </td>
</tr>
</tfoot>Forum: Themes and Templates
In reply to: How to add a hover effect in menu … delayFor a hover with delay you will need jquery.
without the delay you can do it with css.(much easier)Witch do you preffer
Forum: Themes and Templates
In reply to: Need help with a few small problemsThe link you send is now redirecting.
(https://mytestsite.site88.net/)In order to solve the remaining 6, I need to see that URL.
Forum: Themes and Templates
In reply to: Need help with a few small problemsI did not know that.
TnxForum: Themes and Templates
In reply to: Need help with a few small problemsDo a search of your current foldername.In th entire wordpress folder.
If it shows up anyware in a path for instance.
Change it to your new foldername.Make sure to backup what you change first
Forum: Themes and Templates
In reply to: Need some code helpHard to solve with pictures.
Try adding a width to the div .entry-utility.
Or floating the spans within the div (entry-utility)Forum: Themes and Templates
In reply to: Menu troubleshootingDid you backup your site before updating?
Forum: Themes and Templates
In reply to: Need help with a few small problemsWhat is your site URL where the problems occur
Forum: Themes and Templates
In reply to: how do i get my posts to show up on front page like thisIm not sure if this is what you mean.
If you want to change the look of your post.
Modify the stylesheet