Quote:
Originally Posted by selena
I can't answer why, but I can tell you that I have a gallery template right now doing the *exact* same thing in ie. If I take out the thumbs, the template is fine. Put the thumbs in, and it breaks apart. And the thumbs I'm putting in are the size the template was designed for.
I checked your link in FF, it looks fine.
As does the template that busted my ass for an hour this afternoon before I stopped trying to figure it out. 
|
hehe... I know how you feel! Perhaps this works. I'm gonna give it a try:
Quote:
Originally Posted by Aric
99% of the time it is spaces in the HTML.. especially when it comes to an image in a table cell.
Example from your code:
Code:
<td>
<img src="images/tod_15.jpg" width="120" height="20" alt=""></td>
would be better off as
Code:
<td><img src="images/tod_15.jpg" width="120" height="20" alt=""></td>
Sounds crazy, but it usually fixes those mysterious gaps 
|