Thread: HTML Madness
View Single Post
Old 10-12-2005   #7 (permalink)
Man1c M0g
Sheep Worrier
 
Man1c M0g's Avatar
 
Join Date: Sep 2003
Location: Portsmouth, UK.
Posts: 4,105
Blog Entries: 14

Send a message via ICQ to Man1c M0g Send a message via MSN to Man1c M0g Send a message via Skype™ to Man1c M0g
Cool

Heya Kits! The solution is quite easy when you know about IE's wierd rendering engine. The solution lies with your 'Balanced Man' and 'Home' graphics. Here is some of your original code:

HTML Code:
<TD><IMG height=27 alt="" 
      src="- Sigma Phi Epsilon - Kansas Beta - Balanced Man Information -_files/banner2.gif" 
      width=223 border=0> </TD>
Notice the space right near the end, between the IMG and closing TD tag? In IE that renders as a space and leaves a slight gap after your image. Change the code to something like this:

HTML Code:
<TD><IMG height=27 alt="" 
      src="- Sigma Phi Epsilon - Kansas Beta - Balanced Man Information -_files/banner2.gif" 
      width=223 border=0></TD>
...And the problem vanishes! Here's the corrected HTML file. Enjoy!
Attached Files
File Type: zip sigma phi - corrected.zip (3.0 KB, 20 views)
__________________

Last edited by Man1c M0g; 10-12-2005 at 09:27 PM..
Man1c M0g is offline