I can temprorary fix it using

#sideBars-bg {
margin:-2px 0 0 0;
}

but I don't think assigning negative margins is a good solution,
just posting it so I won't forget it, feel free to close the issue

CommentFileSizeAuthor
#3 amadou.jpg78.63 KBgiorgosk

Comments

giorgosk’s picture

A better solution might be to assign

#header {height:112px;

in layout.css (line 15)

but IE seems to be needing the height to be 111px

it seems like some extra margin or padding in the header might be causing this

jwolf’s picture

Status: Active » Postponed (maintainer needs more info)

Would you be so kind to provide either a link to your site where this is happening or a screenshot?
Also, which browsers (and version(s)) are you referring to?

Thanks

giorgosk’s picture

StatusFileSize
new78.63 KB

THe site is not live so I can't give URL
but here is a screenshot

this happens with both firefox latest 2.0.0.11
and IE6 when tested

hope it helps

jwolf’s picture

Assigned: Unassigned » jwolf
Status: Postponed (maintainer needs more info) » Active

Changing the height on the header is the best solution:

layout.css (line 15)

#header 
{
  clear:both;
  height:112px;
  margin:0;
  padding:0;
  width:960px;
}

For the woefully inept IE6, we'll just add the header (minus a pixel from the height) to IE's style sheet:

ie-fixes/ie6.css

#header
{
  clear:both;
  height:111px;
  margin:0;
  padding:0;
  width:960px;
}

I will add the changes to next the release. This will also be added to the 5.x version as well.

Thank you

jwolf’s picture

Status: Active » Patch (to be ported)
sk33lz’s picture

Status: Patch (to be ported) » Fixed

Code already updated in dev.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.