I have this code
<div class="mainmenu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li>
<a href="#">Service</a>
<ul>
<li><a href="#">Domenstic</a></li>
<li><a href="#">International</a></li>
</ul>
</li>
<li><a href="#">Contact</a></li>
</ul>
</div>
I’m trying to use .current-menu-item wordpress class and i want the font style of .current-menu-item be italic and if the current menu item is a submenu i want both submenu and parent menu’s a tag have the italic font style. For example in the above code if the current menu item is Domestic i want both Domestic and it’s parent Service be italic, not just Domestic.