View Full Version : Tables and color text


Dirtbike125
04-27-2003, 06:58 PM
tCan someone tell me how to put in table colors for the text my backround is black and my border is white and i want the text white where would i insert something into:


<table border="3" bordercolor="#FFFFFF">
<tr>
<td width="150"></td>
</tr>
</table>

Xiphias
04-27-2003, 07:30 PM
<table border="3" bordercolor="#FFFFFF" bgcolor="#000000">
<tr>
<td width="150" bgcolor="#000000"><font color="#FFFFFF">
TEXT HERE
</font></td>
</tr>
</table>

BugGirl
05-04-2003, 07:03 PM
if you want the font to stay the same for all the table cells, put this in your head tag:

<style type="text/css">
<!--
.tblfnt {font-color:ffffff}
-->
</style>

and then make your table tag look like this:

<table class="tblfnt">

hope that helps ^_^