Anyone have a bit of advice on this? The below code is a sidebar on a website i'm putting together. I have created a class in CSS to override the general formatting called "sub." It works fine except when I try to throw a link in with the THIS IS LAME line. The text defaults back to normal. Is this a common problem or do I need to put the link in a special way.

<div id="sidebar1">

<ul>
<div class="sub">
<li>THIS IS LAME</li>
</div>

<li><a href="blah.html">name</a></li>
<li><a href="blah.html">name</a></li>
<li><a href="blah.html">name</a></li>
<li><a href="blah.html">name</a></li>
<li><a href="blah.html">name </a></li>
<li><a href="blah.html">name</a></li>
<li><a href="blah.html">name</a></li>
<li><a href="blah.html">name</a></li>
<li><a href="blah.html">name</a></li>
<li><a href="blah.html">name</a></li>
</ul>
<ul>
<div class="selected">
<li>THIS IS LAME</a></li>
</div>
</ul>

<!-- end #sidebar1 --></div>