Shape 5

Joomla Templates => Appwonder - Club => : gordola March 04, 2012, 01:23:12 PM



: [Solved] Possible to remove gradient highlight from Home menu item?
: gordola March 04, 2012, 01:23:12 PM
What do I need to change in the CSS file to remove the gradient background from the Home link? I like the gradient showing when hovering, but because I am opting for a one-page scrolling site, the Home link is always active. No matter what menu item is clicked, Home always displays as the active page. (This makes sense from an HTML standpoint, as the user is staying on the same page, but creates confusing navigation for the end user.) I would be satisfied with no gradient background displaying ever on the Home link.


: Re: Possible to remove gradient highlight from Home menu item?
: jonahh March 05, 2012, 01:34:24 PM
Hello

This can be edited here:

#s5_navv ul li.active span.s5_outer_active, #s5_navv ul li:hover span.s5_outer_active {
    background: -moz-linear-gradient(center top , #FFFFFF 22%, #D3D3D3 60%, #A6A6A6 91%) repeat scroll 0 0 transparent;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 1px 1px 1px #000000;
    display: block;
    height: 44px;
}
s5_suckerfish.css (line 171


: [Solved] Possible to remove gradient highlight from Home menu item?
: gordola March 05, 2012, 03:52:14 PM
Many thanks!