Can you guys help me figure out whats causing the white space between my banner and my navigation on http://josephdefazio.com?
I can't figure it out.
Thanks
Can you guys help me figure out whats causing the white space between my banner and my navigation on http://josephdefazio.com?
I can't figure it out.
Thanks
Usually an issue with using tables and the way the different browsers want to display them. If you went with a straight CSS format rather than div # -> Table -> div#, it would probably get rid of it. Just from what I've experienced anyway. And when it happens to me, it usually hits IE more than FF.
The Grande-est of them all!
make sure that the image has the css property display:block; or display:inline;. It could also be an issue with a new line after the image is shown...
this is a workaround ,
this is your NEW navigation div ,
<div style="background-repeat: repeat-x; background-color: black; background-image: url(../images/navbg.png); margin-top: -6px;"><a class="nav" href="http://forums.x10hosting.com/index.php">Home </a>
<a class="nav" href="http://forums.x10hosting.com/videos.php">Videos</a>
<a class="nav" href="http://youtube.com/josephdefazio">Youtube</a>
<a class="nav" href="http://forums.x10hosting.com/contact.php">Contact</a>
</div>
this shifts your banner up against the heading picture, and removes the white space
![]()
I don't know if you checked, but I believe that the reason I gave above about it the image display style is probably the problem. I've had issues with images adding a 5px padding on the bottom, and when I made it display:block, it went away.
PS, my issue was with tables too.
HTML Code:<img src="http://forums.x10hosting.com/images/logo.png" id="logo" alt="Free Video Tutorials">The code above should solve your problem ;)Code:img#logo { display:block; }
Last edited by xPlozion; 02-18-2009 at 06:48 PM.
Last edited by WhiteOut; 02-19-2009 at 07:21 AM.