I’m completely stumped - I’ve spent 2.5 hours trying to iron out just this one issue. If you look here you’ll see a nav bar - hover over photos and the dropdown appears like normal. However the background for home doesn’t swap out. I’ve been trying every possible thing I could imagine and even some I can’t imagine. Nothing works.
The image that should swap out appears over the subnav items on hover (I’ve got a class commented out that stops that from happening)
Here is the relevant CSS
/***************first tab hover fix stuff**********************/
#mainnav .sf-navbar .home {
background: url('images/menu_tab1.png') no-repeat transparent;
}
#mainnav .sf-navbar .home li:hover {
background: url('images/menu_tab1_selected.png') no-repeat transparent;
border: 5px dashed red; /*delete outline after fixed*/
}
/*
#mainnav #subphotos li:hover {
background: none;
}
*/
/****************end first tab hover fix stuff********************/