I'm looking for a solution for my CMSMS problem. I've applied a stylesheet and a template. Allmost working fine so far. Just 1 thing: the active menu item does not follow the stylesheet .. or partly .. (Also the submenu items are messed up ...)
Can someone help me with this. The website can be found here: http://www.vernieuwenddenken.net/rik/
The selected menu item must have the same 'layout' and behaviour as the rest.
I think that the stylesheet code is not good enough, but can not find a proper solution.
Normal HTML/CSS works fine, but within the menu-manager it acts different
Stylesheet code:
Code: Select all
/**
**********************************
* Navigation
**********************************
*/
#nav
{
padding-right: 0px;
margin-right: -6px;
}
#nav ul
{
list-style: none;
margin-left: 0;
padding-left: 0;
}
#nav ul li,
{
padding-left: 0;
margin-left: 0;
padding-bottom: 10px;
padding-top: 10px;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
font-size: 2.5em;
text-decoration: none;
font-variant: small-caps;
}
#nav a
{
padding: 8px 15px 8px 10px;
text-decoration: none;
border: none;
color: #ffffff;
}
#nav a:hover
{
border: none;
padding: 8px 15px 8px 10px;
background-color: #3a4247;
text-decoration: none;
border-top: 1px solid #4f585e;
border-bottom: 1px solid #4f585e;
border-left: 1px solid #4f585e;
color: #ffffff;
}

