Page 1 of 1

[Solved] Customising menu

Posted: Wed Aug 29, 2007 11:43 am
by shalli
Hi,

I am using cms version 1.1 samoa and I  am having problems customising the navigation menu called menu_vert. I would like to change the font color displayed on the menu and colour of the background when the mouse hovers.

I have tried editing the css. But it doesnt seem to work?

Can anyone point me in the right direction?

cheers

shalli

Re: Customising menu

Posted: Wed Aug 29, 2007 8:01 pm
by Dr.CSS
Have you looked thru all the CSS attached to your template?...

A link would help and what template are you using, a default or one you made?...

If it's a default and you have the "Navigation: Simple - Vertical" CSS attached it would be...

/* first level links */
div#menu_vert a {
  text-decoration:none; /* no underline for links */
  display: block; /* IE has problems with this, fixed above */
  padding: 0.8em 0.5em 0.8em 1.5em; /* some air for it */
  color: #18507C; /* this will be link color for all levels */
  background: url(images/cms/arrow-right.gif) no-repeat 0.5em center;
  min-height:1em; /* Fixes IE7 whitespace bug */
}

Re: Customising menu

Posted: Thu Aug 30, 2007 8:58 am
by shalli
thanks mark

That works great.

cheers for your help