I wonder how I can select ONLY the top level "Mega Parent" in my example?
<li class="page_item parent"><a href="#"> Mega Parent</a>
<ul class="children">
<li class="page_item parent"><a href="#">Subparent</a>
<ul class="children">
<li class="page_item"><a href="#">Child</a></li>
</ul>
</li>
</ul>
</li>
I want only my top parent item "Mega Parent" to have e.g. a red color. What's the best way to solve this?