No way to tell until we can see it live...
Screenshots are useless here.
No way to tell until we can see it live...
Screenshots are useless here.
Well. I fixed the problem with a negative value margin for logoWrapper:
My CSS is as follows:
#headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin: 0em;
padding: 0em;
}
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #FF9900;
height:150px;
margin-top: -10px;
}
But it still doesnt explain where the extra 10px gap is coming from.
I'd like to do it without having to use a negative value for margin... Any ideas?
losteras.com/store
Last edited by Hell Guapo; 4 Oct 2011 at 06:29 AM.
Get rid of your -10px margin and add this line to your stylesheet.
#headerWrapper {background-color: #F90;}
The 'gap' is still there, but now its the same colour as your logo wrapper - so it doesnt matter.
try bottom padding for #navMainWrapper
I removed the -10px and tried what you said.
Advice appreciated but the 'hidden' gap will then cause a 10px unevenness above the logoWrapper. I would be forced to use a negative padding to correct the new issue. Plus, if I decide to change the color of logoWrapper, I'd be forced to change color in two places.![]()
For information, you can't do negative padding, only negative margins.
I looked at your site and was not able to find a cause for the gap... really strange. The fixes that should have helped, didn't (except for the negative margin).
Last edited by Hell Guapo; 4 Oct 2011 at 04:25 PM.