I might not take things right, but you can give all those headers a unique ID and give them a style of your desire through CSS.
Let me quote the silver accordion. Try to add highlighted in the markups:
Code:
<div class="silverheader" id="u1"><a href="http://www.dynamicdrive.com">Dynamic Drive</a></div>
<div class="submenu">
Some random content here<br />
</div>
<div class="silverheader" id="u2"><a href="http://www.dynamicdrive.com/style/" >CSS Examples</a></div>
<div class="submenu">
Some random content here<br />
</div>
<div class="silverheader" id="u3"><a href="http://www.javascriptkit.com">JavaScript Kit</a></div>
<div class="submenu">
Some random content here<br />
</div>
<div class="silverheader" id="u4"><a href="http://www.cssdrive.com">CSS Drive</a></div>
<div class="submenu">
Some random content here<br />
<img src="http://i27.tinypic.com/sy7295.gif" />
</div>
<div class="silverheader" id="u5"><a href="http://www.codingforums.com">Coding Forums</a></div>
<div class="submenu">
Some random content here<br />
</div>
</div>
And use those IDs in your CSS:
Code:
#u1{background:#9c0;}
#u2{background:#fc0;}
#u3{background:#eee;}
#u4{background:#f00;}
#u5{background:#333;}
Hope that makes sense.
Bookmarks