datapitstop » Website Help »FAQDirectory
Website Help
.
Email: suggestions@datapitstop.com
Website: help.datapitstop.us
FAQ: Working With Menus
I don't like the default menu highlighting when I put my mouse over it. How do I turn this off?
You will need to edit your CSS and Javascript options to do this. Login to your site, then select "Configuration Options" under "Site Administration." You now need to edit the text in the first box. Locate and remove the following:

Style Sheet:
A:hover {color: #FFFFFF; background-color: #6699FF; text-decoration:none;}
A.menugroup:hover {color: #FFFFFF; font-weight: bold; background-color: #6699FF; text-decoration:none;}
A.menusubgroup:hover {color: #EEEEEE; font-weight: bold; background-color: #6699FF; text-decoration:none;}
A.menuitem:hover {color: #FFFFFF; font-weight: bold; background-color: #6699FF; text-decoration:none;}


All Javascript:
//Navigation Mouse Over Effects
function NavMouseOver(theid)
{
document.getElementById(theid).bgColor = '#6699FF';
document.getElementById(theid).className = 'linkover';
}
function NavMouseOut(theid)
{
document.getElementById(theid).bgColor = '';
document.getElementById(theid).className = 'out';
}
function NavMouseOutGroup(theid)
{
document.getElementById(theid).bgColor = '';
document.getElementById(theid).className = 'out';
}
function NavMouseOutItem(theid)
{
document.getElementById(theid).bgColor = '';
document.getElementById(theid).className = 'out';
}