I'm trying to edit a menu tab on my main navigation to highlight it from the rest. That is, it will constantly have a background colour.
http://redmudmedia.com
Using firefox, I have inspected the element, giving me the following;
<li? id="menu-item-1144"? class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1144">
What is the correct way of changing the background colour on this menu tab only? I can't seem to get the identifier quite right.
So far I have tried the following variations added to my custom css;
#nav ul li.menu-item-1144 {background:#CC0000;}
**********************************
.main_nav ul li.menu-item-1144 {background-color: #CC0000;}
**********************************
#menu-item-1144
ul.main-nav li a {background-color:#CC0000;}
**********************************
I'm sure I'll kick myself, but thanks in advance!











