Gap between header and sidebar image

GiorgosK - January 13, 2008 - 13:26
Project:Amadou
Version:6.x-1.1
Component:User interface
Category:bug report
Priority:minor
Assigned:jwolf
Status:active
Description

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

#1

GiorgosK - January 13, 2008 - 13:34

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

#2

jwolf - January 13, 2008 - 21:06
Status:active» active (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

#3

GiorgosK - January 14, 2008 - 01:12

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

AttachmentSize
amadou.jpg78.63 KB

#4

jwolf - January 16, 2008 - 21:08
Assigned to:Anonymous» jwolf
Status:active (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

 
 

Drupal is a registered trademark of Dries Buytaert.