Link? Can’t help without seeing, ya know.
Thread Starter
ldablo
(@ldablo)
Sorry, the link was in the first post but not clickable.
My bad!
HERE
Looking at your category page, you have this div in the code:
<div class="navigation">
<div class="alignleft"></div>
<div class="alignright"></div>
<div class="clear"></div>
</div>
which appears to have nothing in it. Because it has th class navigation inside the div content, this rule from your style sheet applies:
#content .navigation
{
padding:5px 15px 5px 15px;
height:30px;
line-height:30px;
}
which gives that box a height of 30px.
I haven’t seen your other posts, it seems to me that you should remove the unwanted div from your code, which should get you what you want.
It looks like you have other errors in your style sheet. You might want to run this page through the Validator and fix what it tells you to fix.
Thread Starter
ldablo
(@ldablo)
The only one I can’t figure is line 11.
For some reason if I remove it the background wallpaper disappears.
Any ideas?
This is the code.
html
{
}
And after that is
body
{
font:80% "Trebuchet MS";
padding:0;
margin: 0;
background:url('images/bgimage.gif') repeat;
}
I am stumped.
Then again I am new to all this!!
The line:
background:url('images/bgimage.gif') repeat;
sets the image bgimage.gif as the background image for the document, and has it repeat in both directions. So yes, taking this out will make your background dissappear.