PDA

View Full Version : getting rid of the borders


bendi
05-01-2005, 11:37 AM
Hi,
Got a strange problem, what ever i do i cant make the border of my table invisiable i tried border="0" border="none" border="no" (in the table, tr, td etc)
Usually the border="0" did the trick on the other sites i built but not this time.
Thanks,
Bendi

_Aerospace_Eng_
05-01-2005, 11:41 AM
We need a either a link to the site or the code you are using, without it we can't be of much help.

JamieR
05-01-2005, 12:03 PM
As he just wants to remove the borders, couldn't you use something like this from CSS?



tr, th {
border: none;
}

bendi
05-01-2005, 11:27 PM
Thanks guys,
here is the link : http://www50.brinkster.com/milatova/
Bendi

_Aerospace_Eng_
05-02-2005, 12:30 AM
I'm guessing you are trying to get rid of the white lines in between your table cells? Add cellspacing="0" and cellpadding="0" to your tables.

bendi
05-03-2005, 12:03 AM
Thanks a lot!!!
That did it!
Bendi