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
I can't figure it out.
Thanks
I just tired that and it didn't work =[Try adding valign="top" to the <td> tags.
Thanks, but I already knew I could do that. I want to know whats causing it, because I don't see anything in my code that would cause it do that. I don't want to use a work around.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
<img src="http://forums.x10hosting.com/images/logo.png" id="logo" alt="Free Video Tutorials">
img#logo {
display:block;
}
Thank you very much! That worked perfectly.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:<img src="http://forums.x10hosting.com/images/logo.png" id="logo" alt="Free Video Tutorials">
The code above should solve your problemCode:img#logo { display:block; }