AnimeAngel377
12-31-2003, 02:55 PM
I was just wondering, how do I change my text color inside my table?
|
View Full Version : Font? AnimeAngel377 12-31-2003, 02:55 PM I was just wondering, how do I change my text color inside my table? Cherchezlafemme 12-31-2003, 03:00 PM <font color="#FFFFFFF">Your Text here</font> change what's in the parenthesis, if you do not know the code go to the "Color" section of Lissa's site duckgirl 01-01-2004, 10:11 AM Or, so all the text in your tables is always a certain color, specify so in your css stylesheet. Example: <html> <head> <style type="text/css"> td {font-color:#ffffff; } </style> </head> <body> <table><tr><td>La la la! This text is all white, because ffffff specifies that color.</td></tr></table> </body> </html> Or, if you decide to do it like Cherchezlafemme suggested, put those colors in each <td> cell. jamslam 01-04-2004, 07:06 AM i would advise what duckgirl said, except that it's just color:, not font-color: ;). As the font tag is deprecated and you should not get into the habit of using... it's also very in-efficient. duckgirl 01-04-2004, 07:18 AM Ah, yes.. oops. I always have font color after specifying lots of other things, like size, font, and such, so it felt weird, when I put it standing alone, to have just color, with no font in front of it. And I just tested it to make sure, font-color is a non-existent attribute. So thanks for clearing that up, jamslam. jamslam 01-04-2004, 07:20 AM Ah, yes.. oops. I always have font color after specifying lots of other things, like size, font, and such, so it felt weird, when I put it standing alone, to have just color, with no font in front of it. And I just tested it to make sure, font-color is a non-existent attribute. So thanks for clearing that up, jamslam. oh yea i do the same exact thing. I mean they have font-weight, font-style, font-size, but why not have font-color? Seems a little silly to me, oh well. The WYSIWYG editor should be enabled on this message board :mad: MaGiCSuN 01-04-2004, 12:11 PM If you have a problem with my site, any problem, please e-mail me and do not post it on my forum. taken from the rules (http://www.lissaexplains.com/forum/showthread.php?p=31594#post31594) Love, Mirna |