Nov 26, 2001 #1 cbrooks Programmer Joined Nov 26, 2001 Messages 2 Location US I have tried h=0 and v=0, as well as border=0 for this table that has extra spacing. what to do? I have looked 8 pages back in various threads in this forum, but cannot seem to find an answer to this problem. any advice?
I have tried h=0 and v=0, as well as border=0 for this table that has extra spacing. what to do? I have looked 8 pages back in various threads in this forum, but cannot seem to find an answer to this problem. any advice?
Nov 26, 2001 #2 ssidetv Technical User Joined Aug 30, 2001 Messages 57 Location GB I had similar issues.....I solved it in the table properties box by making cell pad and cell space =0. Apparently they default to 2 if left blank. Hope this helps. Nick Upvote 0 Downvote
I had similar issues.....I solved it in the table properties box by making cell pad and cell space =0. Apparently they default to 2 if left blank. Hope this helps. Nick
Nov 26, 2001 Thread starter #3 cbrooks Programmer Joined Nov 26, 2001 Messages 2 Location US yes, I did change the cellpad and cellspace to 0 for the table. this did not solve the problem unfortunately. Upvote 0 Downvote
yes, I did change the cellpad and cellspace to 0 for the table. this did not solve the problem unfortunately.
Nov 26, 2001 #4 BigBadDave Programmer Joined May 31, 2001 Messages 1,069 Location EU Take out carige returns in you table : Do this : <table cellspacing="0" cellpadding="0" border="0"> <tr> <td>data here</td> </tr> </table> Instead of this : <table cellspacing="0" cellpadding="0" border="0"> <tr> <td> data here </td> </tr> </table> Regards Big Dave davidbyng@hotmail.com ** If I am wrong I am sorry, but i'm only trying to help!! ** Upvote 0 Downvote
Take out carige returns in you table : Do this : <table cellspacing="0" cellpadding="0" border="0"> <tr> <td>data here</td> </tr> </table> Instead of this : <table cellspacing="0" cellpadding="0" border="0"> <tr> <td> data here </td> </tr> </table> Regards Big Dave davidbyng@hotmail.com ** If I am wrong I am sorry, but i'm only trying to help!! **