OK so I finally figured it all out and it is working great.
from Jinga
ALSO, can the width be adjusted & the background color?
To change the width:
Code:
div.sdmenu {
width: 150px;
font-family: Arial, sans-serif;
font-size: 12px;
padding-bottom: 10px;
background: url(bottom.gif) no-repeat right bottom;
color: #fff;
To change the main font color:
Code:
div.sdmenu div span {
display: block;
padding: 5px 25px;
font-weight: bold;
color: #oooooo;
background: url(expanded.gif) no-repeat 10px center;
cursor: default;
border-bottom: 1px solid #ddd;
}
- o marks the spot
To edit the background color of the submenu go into the css:
Code:
}
div.sdmenu div a {
padding: 5px 10px;
background: XXXXX;
display: block;
border-bottom: 1px solid #ZZZZZZ;
color: #066;
}
- X marks the spot to change the background color of the sub menus
- Z marks the spot to change the border color between the sub menu bars
To edit the mouse over:
Code:
div.sdmenu div a:hover {
background : #pppppp url(linkarrow.gif) no-repeat right center;
color: #ffffff;
text-decoration: none;
}
- p marks the spot for the background color
- f marks the spot to change the font color
I hope this helps
Bookmarks