I am struggling with styling a menu that has a structure like this:
<div class="myclass" >
<ul>
<li>
<li> <------- need to style the parent li and not the child li
<li>
<ul>
<li> <------ then style only the child li
<li>
</ul>
<li>
<li>
<li>
</ul>
</div>
I am looking for help on how to select and style the parent and child menus separately. Any assistance would be greatly appreciated! :)