What theme are you using? Where did you download it from?
Flati by Spiral Pixel from Themeforest.
Here’s the code section pertaining to the menu. I’ve added the section for menu item 37 – I figured the a:active might have done it but no luck 🙁 . Thanks for the help!
#main_menu select { display: none; font-size:12px; }
.menu_wrap { float:right; margin-top:20px; margin-right:-10px; }
.menu_wrap .nav li {
list-style: none;
float: left;
margin: 0;
position: relative;
}
.menu_wrap .nav > li {
padding: 0 0;
display: inline-block;
height:20px;
margin-top:0px;
}
.menu_wrap .nav li a {
font-weight:400;
color: #bbb;
letter-spacing:2px;
font-size: 13px;
display: block;
padding:24px 30px 22px;
text-align: center;
text-transform: uppercase;
}
li#menu-item-37 a:hover, a:active {
background-color: #4fb34f;
-webkit-border-radius: 4px 4px 0px 0px;
-moz-border-radius: 4px 4px 0px 0px;
border-radius: 4px 4px 0px 0px;
color: #000000
}
.menu_wrap .nav > li > a:hover, .menu_wrap .nav > li > a:focus { background-color:transparent; color:#2980B9; }
.menu_wrap .nav > li.active > a, .menu_wrap .nav > li.active { background: #2980B9; color:#fff;
-webkit-border-radius: 4px 4px 0px 0px;
-moz-border-radius: 4px 4px 0px 0px;
border-radius: 4px 4px 0px 0px;
}
.menu_wrap .nav > li.active > a:hover { color: #fff; }
.menu_wrap .nav ul {
background: #fff;
display: none;
left:-25px;
padding:0;
position:absolute;
top:80px;
width:170px;
z-index:300;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background:#323A45;
}
.menu_wrap .nav ul li a {
width: 130px;
border: 0;
color: #eee;
display: block;
font-size: 13px;
letter-spacing:0;
padding: 8px 20px !important;
text-align: left;
text-transform: none;
webkit-transition:all 0.2s ease-in;
-moz-transition:all 0.2s ease-in;
-o-transition:all 0.2s ease-in;
transition:all 0.2s ease-in;
}
.menu_wrap .nav > li > ul li a { text-decoration:none; color: #bbb; }
.menu_wrap .nav ul li a span {display:none; }
.menu_wrap .nav > li > ul li > a:hover,
.menu_wrap .nav > li > ul li.sfHover > a,
.menu_wrap .nav > li > ul li.active > a { text-decoration:none; color: #fff; }
.menu_wrap .nav ul ul {
position: absolute;
display: none;
width: 170px;
left: 180px;
top: 0px;
height:auto;
list-style: none;
z-index: 111;
padding: 0 0;
margin: 0;border-radius: 6px;
border-top:0;
}
.menu_wrap .nav ul ul a{
margin: 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
I’m sorry but as you are using a commercial theme, you need to seek support from the theme’s developer/vendor. We do not support commercial products here.
generally, check the CSS classes which get generated by wp_nav_menu() – http://codex.wordpress.org/Function_Reference/wp_nav_menu#Menu_Item_CSS_Classes
or use a browser inspection tool to find out which CSS classes belong to a current menu item.