Thread: Issue in IE6
View Single Post
  #5 (permalink)  
Old Jul 12th, 2007, 14:07
Lchad Lchad is offline
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Issue in IE6

Here's your code for that logo
Code: Select all
<div class="moduletable">
            <a href=""><img style="margin: 5px; width: 200px; height: 69px; float: left; padding-bottom: 120px; border-right: none" src="images/stories/logo_updated.jpg" border="0" alt="logo" title="logo" width="200" height="69" /></a></div>
First of all the <a href=""> is empty. You need to put in "/"
All the margin, float, padding and border need to be placed into css.

Often times in IE6, if you have spaces between the last element and the closing div, you will see white. So delete all the extra spaces in the code between </a> and </div>

See if that solves that problem. If not come back.
Reply With Quote