Log in

View Full Version : All Levels Navigation Menu (Side)



RPFeynman
12-16-2008, 04:05 AM
1) Script Title: All Levels Navigation Menu

2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex1/ddlevelsmenu/index.htm

3) Describe problem: Not a problem but a customization question. Can I make the submenus a different color instead of black on white. Say blue on white for example or white on blue?

Art

rangana
12-16-2008, 04:24 AM
If you want to change the "default" background color of the submenu, you can open ddlevelsmen-base.css, and change highlighted:


.ddsubmenustyle li a{
display: block;
width: 160px; /*width of menu (not including side paddings)*/
color: black;
background-color: lightyellow;
text-decoration: none;
padding: 4px 5px;
border-bottom: 1px solid black;
}


...if you're wanting to change the "black on white" combination on hover, you can change highlighted:


.ddsubmenustyle li a:hover{
background-color: black;
color: white;
}


to:


.ddsubmenustyle li a:hover{
background-color: #00f;
color: white;
}


...or anything that meets your heart's desire.

Hope that helps.