Hi,
I have a small problem that I have been agonizing about now for a few hours. I'm designing a new site and CANNOT get this empty space to _not_ show up.
http://i37.tinypic.com/30hv2mc.png
I've tried tweaking the CSS to no avail. Anyone have any ideas?
Thanks!
Comments
Comment #1
CMLA commentedForgot to mention, it's the line between the bottom of the abstract logo and the Primary Links Menu. Perhaps a ~1em or so blue gap.
Comment #2
aimutch commentedDid you disable the Site Slogan in the theme settings?
Comment #3
CMLA commentedYeah, Site Slogan is unchecked in both Global Settings and Sky Settings.
Comment #4
aimutch commentedDo you know how to use Firebug in Firefox to examine or at least capture the HTML+CSS code? Unless it's a public site we can view, we'll probably need the specific chunk of code for that area to diagnose.
Comment #5
CMLA commentedI poked around with Firebug and the CSS files, but I couldn't figure it out. The site is public - feel free to tell me what I'm missing:
http://174.37.169.223/
Comment #6
aimutch commentedHere's what I found:
In your custom CSS file, find this:
.name-logo #logo{margin:0 0 1em 0.5em;display:block;}
It's adding 1em of padding to the bottom of the image. Changing that to:
.name-logo #logo{margin:0 0 0 0.5em;display:block;}
Removes 90% of that. In FF3, there's still a small amount of padding along the bottom of the image. It appears to be applied by the
Comment #7
aimutch commentedShoot...some of my code got zapped. trying again.
Comment #8
CMLA commentedThat worked perfectly - Thanks a bunch!