how to hide Table border in Firefox???
Posted: 13 July 2007 04:53 AM   [ Ignore ]
Newbie
Rank
Total Posts:  1
Joined  2007-07-12

hi,
i am developing a website.as it is fine in IE 6. All the table are showing perfectlly. but when i saw it in Firefox.. i shocked. all the border have come out. so did not get any solution for it. please anybody help me .....

Profile
 
 
Posted: 16 July 2007 07:30 PM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  16
Joined  2005-12-07

Can you post a link to the site so we can see it?  Do you have border=“0” set in the <table> tags? <table border=“0”>...</table>

Profile
 
 
Posted: 13 August 2007 12:16 PM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  2
Joined  2007-08-13

<table>
<tr>
<td>
<a herf=”#”><ima src=“img.gif” border=“0’></a>
</td>
</tr>
</table>


okey ...

Profile
 
 
Posted: 21 August 2007 09:02 AM   [ Ignore ]   [ # 3 ]
Newbie
Rank
Total Posts:  16
Joined  2007-08-21

Use this in you’re page header:

  <STYLE TYPE=“text/css”>
  <!—
table{
border:0px;
}
  —>
  </STYLE>

Profile