I'm struggling to find the right CSS selector to specifically change the font of just one list item. Here's the current structure:
<ul id="menu-applemain class="x-nav>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
</ul>
Currently, I'm able to select the correct list item using
#menu-applemain li:nth-child(4){ }
. Although I can change the background color successfully, changing the font doesn't seem to work even with !important added. I believe I need to target the 'li a' in order to change the font, but I'm unsure of the correct selector. I've attempted #menu-applemain li a:nth-child(4){ }
without success.