I had an idea like this:
#list li > a {
font-weight: bold;
}
However, I only want the top level items to be made bold, not nested LI's within LI's -- hope that makes sense?? :)
EDIT |
<ul id="list">
<li><a href="#">A</a>
<ul>
<li><a href="#">B</a>
<ul>
<li><a href="#">C</a></li>
<li><a href="#">D</a></li>
</ul>
</li>
<li><a href="#">E</a></li>
</ul>
</li>
<li><a href="#">F</a></li>
<li><a href="#">G</a></li>
<li><a href="#">H</a></li>
</ul>