| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member Join Date: May 2004 Location: Toronto
Posts: 2,308
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Mozilla Table Height! I'm having a slight dilemma while testing my online games' website on the Mozilla browser. As you can see, all is well when the website is launched in Internet Explorer. However, when accessed by a visitor using Mozilla, the two links' bars (shaded in light blue) appear to be drastically stretched. I heard correcting something relating to the table's 'line-height' could resolve this issue, but I simply lack the technical expertise to do so myself. Hence, I'm wondering if someone here could guide me through correcting this? |
| |
| | #2 (permalink) |
| Senior Member Join Date: Sep 2006
Posts: 1,019
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | The error is the same on all browsers apart from IE. Try adding the height property to that table: Code: <table style="margin-top: 5px;" class="news" width="100%" height="10" align="center"> ... </table>
__________________ LatestDrops.com - Search for expired, pre-release and pending delete domain names |
| |
| | #4 (permalink) |
| Senior Member Join Date: Sep 2006
Posts: 1,019
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | You need to clean up your HTML... Replace first table by Code: <TABLE class="news" style="MARGIN-TOP: 5px" width="100%" align=center>
<TR>
<TD colSpan="5" align="center">
<SPAN id=subnavi8><SPAN class=navigation style="FONT-SIZE: 7pt">
<A
href="http://www.arcadetemple.com/category/all/1.html">All
Media</A> | <A
href="http://www.arcadetemple.com/category/Action/1.html">Action</A> | <A
href="http://www.arcadetemple.com/category/Arcade/1.html">Arcade</A> | <A
href="http://www.arcadetemple.com/category/Puzzle/1.html">Puzzle</A> | <A
href="http://www.arcadetemple.com/category/Shooting/1.html">Shooting</A> | <A
href="http://www.arcadetemple.com/category/Sports/1.html">Sports</A> | <A
href="http://www.arcadetemple.com/category/Other/1.html">Other
Media</A> | <A
href="http://www.arcadetemple.com/category/High%20Scores/1.html">High
Scores</A></SPAN></SPAN>
</TD>
</TR>
</TABLE> Code: <TABLE class="news" style="MARGIN-TOP: 5px" width="100%" align="center">
<TR>
<TD colSpan="5" align="center">
<SPAN id=subnavi8><SPAN class=navigation style="FONT-SIZE: 7pt">
<A
title="Play addicting games to cure your boredom!"
href="http://www.bootyarcade.com/" target=_blank>Play
Games</A> | <A
title="A large selection of girls' dress up games!"
href="http://www.girldressupgames.net/" target="_blank">Dress Up
Games</A> | <A
title="Play thousands of free online games at this website!"
href="http://www.2grandarcade.com/" target=_blank>Online
Games</A> | <A
title="Compete for the highest scores and win cash prizes!"
href="http://www.arcadeboss.com/" target=_blank>Arcade
Games</A> | <A title="" href="http://www.gamesfreak.net/"
target=_blank>Free Games</A> | <A
title="A large collection of free online flash games!"
href="http://www.gamesplz.com/" target=_blank>Play Online
Games</A> | <A title="" href="http://www.khemer.com/"
target=_blank>Khmer</A> | <A
title="" href="http://www.gamerslevel.com/" target=_blank>Addicting
Games</A> | <A title="" href="http://www.gamersattack.com/"
target=_blank>Funny Games</A> | <A
title="Play free online games at Famous Arcade!"
href="http://www.famousarcade.com/" target=_blank>Play
Games</A></SPAN></SPAN>
</TD>
</TR>
</TABLE> ????: NamePros.com http://www.namepros.com/programming/484514-mozilla-table-height.html ????: NamePros.com http://www.namepros.com/showthread.php?t=484514 Richard
__________________ LatestDrops.com - Search for expired, pre-release and pending delete domain names |
| |
| | #6 (permalink) |
| Senior Member Join Date: Sep 2006
Posts: 1,019
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | Thanks
__________________ LatestDrops.com - Search for expired, pre-release and pending delete domain names |
| |