Forum Moderators: open

Message Too Old, No Replies

Page looking different in Firefox

         

th1chsn

1:59 am on Jun 27, 2006 (gmt 0)

10+ Year Member



Can anyone help me figure out why my page is looking differently in Firefox than IE? When I view it in Firefox it puts spaces in between the navigation but in IE it appears much tighter.

The site is: <edited>

TIA for any help.

<Sorry, no personal URLs.
See Forum Charter [webmasterworld.com]>

[edited by: tedster at 4:59 am (utc) on June 27, 2006]

tedster

5:04 am on Jun 27, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you're using images inside table cells and have a full DTD, you are most likely running into a Standards Mode vs Quirks Mode issue [webmasterworld.com]. IE gets it wrong, by the way.

If this is the problem, try either of these fixes:

td.imgholder img {
display:block;
margin:0;
padding:0;
}

...or

td img {
vertical-align: bottom;
}

[edited by: tedster at 8:39 pm (utc) on June 28, 2006]

th1chsn

10:24 pm on Jun 27, 2006 (gmt 0)

10+ Year Member



Thanks tedster! The second one worked.