- Impact
- 18
Need help ASAP...
I am making a script for a client: here is [part of] the CSS I am using:
Here is the code I want to apply it to:
this unfortunately displays the link as white so that it dosen't show up in the background! How would I make it so that in a "td" with the class "first", links are displayed in black?
Thanks in advance!
I am making a script for a client: here is [part of] the CSS I am using:
Code:
a{
color: #ffffff;
}
.first{
background-color: #ffffff;
color: #000000;
}
Here is the code I want to apply it to:
Code:
<table>
<tr>
<td class="first"><a href="a-page.php">Text</a></td>
</tr>
</table>
this unfortunately displays the link as white so that it dosen't show up in the background! How would I make it so that in a "td" with the class "first", links are displayed in black?
Thanks in advance!


















