Not sure if the title is a little vague or not,
However, lets say you have..
.topactive a:focus, .topactive a:hover,
.sf-menu a:active:first-child, .sf-menu li.sfHover:first-child {
}
and in your html your looking at:
all the ul and li class declarations;
<ul class="sf-menu">
<li class="current">
<p class="topactive"><a href="#a">About Us</a></p>
<ul class="menu2"><li>submenu</li></ul></li>
<li>something</li>
<ul><li>submenu</li></ul>
</ul>
I need it to target the left most li only.
Is the css selecting only "example", as in my current code it is, and i cannot select only the first level ul explicitly, its only selecting the first instance of ul.
I hope this makes sense, sorry for any ambiguity and thanks to those who helped on my other question.