Page 1 of 1

Changing colour of second level menu

Posted: Thu Dec 13, 2007 12:51 pm
by norman
Someone asked:
Is it possible for the submenus to have a different background to the main menu?
Yes, by adding some additional CSS that works for LI items within LI.

E.g. in listmenu_b.css, look for

Code: Select all

.menulist li {
 position: relative;
 border: 1px solid #fff;
 background: #369;
 margin-bottom: -1px;
}
and below it add

Code: Select all

.menulist li li {
 background: #669;
}