Forum Moderators: not2easy
The div is around a table that contains the href's.
Ducking...
But seriously, wouldn't this work?
<div id="nav">
<table border="0" cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top"><img src="images/lsbstart.gif" alt=""/></td>
</tr>
<tr>
<td id="nav1" valign="bottom"> <a href=";
:)">;)</a></td>
</tr>
</table>
</div>
css code:
a#nav{
color:#FFFFFF;
}
#nav a instead ;) In fact, I would recommend using the SelectORacle [penguin.theopalgroup.com] to better understand selectors.
Comparing these two selectors:
a#nav;
#nav a
...tells us:
Selector 1: a#navSelects any a element with an id attribute that equals nav.
Selector 2: #nav a
Selects any a element that is a descendant of any element with an id attribute that equals nav.