View Full Version : please help...change font in tables!


kimpav
04-02-2004, 07:27 PM
I came up with a table with about a thousand cells, but now I'm trying to set the font of the text within the table.
[http://members.cox.net/6524/shows.html]

I want ALL the text on the page to be tahoma.
How would I do that without doing it in each individual cell?
I don't want to have to type in the code 1000 times.

XxJenny
04-02-2004, 07:30 PM
Use css

table, tr, td {
font-family: tahoma;
}


that should work

kimpav
04-02-2004, 07:36 PM
that worked! thank you so much.

I tried that earlier, but I think I did something wrong...there was too much code for me to go through.