@yomal: Thanks. I see that you have use the following css to highlight the home link in your menu. Remove that and it will not highlight when you have active any other link. `#menu-main li:first-child a {
background-color: #444444 !important;
}`
and also remove the code
<div style=”background-image: url(‘http://www.test.com/wp-content/themes/simple-catch/images/home.png’); width:100px; height:130px; background-repeat: no-repeat; background-color:#444; display: inline; margin: 0; padding: 0 0 0 20px; “> </div>
that you have added in for home menu and just replace with the text home.
Then add the following CSS in your “Appearance => Theme Options => Custom CSS” box.
#header #mainmenu ul li#menu-item-149 a:hover,
#header #mainmenu ul li#menu-item-149.current-menu-item a {
background: url("http://www.sambaero.com/wp-content/themes/simple-catch/images/home.png") no-repeat scroll center center #444;
display: block;
text-indent: -99999px;
}