Changing colour of second level menu

Search engine friendly UL list type menu for Actinic V8 and V9. Styled by CSS and animated by a small JavaScript.
Post Reply
norman
Site Admin
Posts: 1252
Joined: Sat Feb 07, 2004 9:55 pm

Changing colour of second level menu

Post 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;
}
Norman
Post Reply