View Full Version : Turn off CSS codes?


Anto_J_Lareneg
11-13-2003, 05:41 PM
I don't know if this has been answered on the forum. 0_o; I couldn't find it by just searching.
I have some CSS on this page I am making for school.
http://www.theanto.org/Junk/

Anndd.. As you see.. I have the little floating image on the side (filled by a filler image for testing XD) and it has the CSS table border around it. I was just wondering if I could turn off that CSS table border WITHOUT deleting the table.. because I would like to add a few more images.. but keep them aligned in the table. ^^ Thank you in advance for your help!

kittycat
11-13-2003, 06:10 PM
To the table tag, add style="border: 0px;"

You could also make a separate class for the table without a border, something like

.noborder { border: 0px; } (in the css)

<table class="noborder"> (for the html)

Anto_J_Lareneg
11-13-2003, 06:16 PM
I tried what you said... and it made the border thinner. 0_o; I even put both codes in there.. tried them seperatly.. and I get the same thing everytime.
I don't know.. it might be this web browser.. this school computer doesn't have all the CSS enabled..

kittycat
11-13-2003, 06:30 PM
Try adding it to the <td> tag as well.

Anto_J_Lareneg
11-15-2003, 01:03 AM
Thank you! :D It works now!