Ok, there must be some way to do this, but I'm trying to define a style for all links within code segments with a certain ID. In a row like this:
I can't simply do a#butnBlue though as the links are not in the tr and the style does not take. Is there some syntax I am missing or do I have to give each of those links an ID?
Thanks in advance
-Nm
Code:
<tr id="butnBlue">
<td width="33%"><a href="#null">Address</a></td>
<td width="34%"><a href="#null">Street</a></td>
<td width="33%"><a href="#null">CNN</a></td>
</tr>
I'd like the links to have the following style:
a { color: #FFA500;}
a:hover {color:#FF3366; text-decoration:none;}
Thanks in advance
-Nm