Space underneath logo
karunadave - July 2, 2009 - 04:40
| Project: | Zen |
| Version: | 6.x-1.0 |
| Component: | layout.css |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I have a Zen based theme in developement here: http://dev.khadro.com/node that shows unwanted space underneath the logo.
A search showed this link, but alas this makes no difference.
http://drupal.org/node/281106#comment-1345134
Firebug editing, for example disabling all related tags does nothing either.
Please, any suggestions are very appreciated.
-Dave

#1
Note that Firebug indicates the space below the logo image is associated with the
<a rel="home" title="Home" href="/">...</a>tag that wraps the logo, but I don't know what to do about it.Thanks again for any help.
-Dave
#2
you can try adding this on #main in layout.css or add to it in your theme css:
#main {
position: relative;
top: -5px;
}
granted that is a good fix in firefox, not sure what that looks like in IEs
#3
Hi koesbong thanks from your help.
Yes, it looks good in Firefox. Rather atrocious in IE 8 though, for it shifts the entire #main and #navbar fully right of #page.
On the other hand
#header{
position: relative;
top: 5px;
}
Works well in both. I'll let you know what it looks like in IE 6 when I go to work tomorrow.
Cheers
-Dave