------------------------------------------------------------------------------------------
Hi everyone,
I've been asked to build a CMS Website yet I've never touched CMS - I know, I'm slow. Thanks to the 10 minute video tutorial by Mint I was able to put together a fairly simple site and get it built up in CMSMS.
Everything is ok apart from the active page button in the navigation. I can't for the life of me find the css in any of the default templates to alter this and it's really the only problem I've hit so far - excluding that they wanted 2 buttons to have drop menus but having tried that's on hold! ::)
If anyone could please just let me know what css is needed to alter this I would be very grateful.
The site in question can be found at: http://anudesign.co.uk/preview/tennis-cms/
I'd actually like the active button to be the same of the hover state. The navigation css:
Code: Select all
#nav {
margin:0;
font-family:Arial, Helvetica, sans-serif;
}
#nav ul {
width:178px;
font-family:Arial, Helvetica, sans-serif;
font-size:16px;
color:#999;
list-style: none;
}
#nav li {
float:left;
display:block;
width:178px;
height:20px;
border-bottom: dashed 1px #CCC;
padding: 0 0 0 20px;
margin: -20px 0 25px -40px;
background-image:url(../images/build/bullets.png);
background-repeat: no-repeat;
background-position: 0 .2em;
}
#nav li a {
color:#000;
}
#nav li a:hover {
color:#093;
border-bottom:#000 1px dotted;
}
Thanks in advance.
Daniel.