I have a list like so:
<ul id="main">
<li>January
<ul>
<li>test</li>
<li>test2</li>
</ul>
</li>
<li>February
<ul>
<li>test</li>
<li>test2</li>
</ul>
</li>
</ul>
I would like to affect only the first level of li's - I thought this css would do the trick, but it appears to be not working correctly.
#main > li {
cursor: pointer;
list-style-image: url('plus_sign.gif');
}
The child lists still have a plus symbol next to them ... what would I be doing wrong?