Download the plus and minus icons from the glossy accordion menu.
In your style, add:
Code:
.urbangreymenu img {
position: absolute;
top: 8px;
right: 5px;
}
Then, in each h3 add an image with a url to minus.gif, e.g.,
Code:
<h3 class="headerbar"><a href="http://www.dynamicdrive.com/style/">CSS Library</a><img src="minus.gif" /></h3>
Then for the onopenclose option add:
Code:
onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
if(state == "none"){
header.getElementsByTagName('img')[0].src = "minus.gif";
} else {
header.getElementsByTagName('img')[0].src = "plus.gif";
}
}
Good luck
Bookmarks