What's the menu listing? If you mean this:
Code:
<ul class="navlist">
<li><a href="http://www.dynamicdrive.com">Dynamic Drive</a></li>
<li onMouseover="dropdownmenu(this, event, menu2, '150px')" onMouseout="delayhidemenu()"><a href="http://www.javascriptkit.com">JavaScript Kit</a> <span style="position: relative; left: 30px">></span></li>
<li><a href="http://www.cssdrive.com">CSS Drive</a></li>
<li><a href="http://www.codingforums.com">Coding Forums</a></li>
</ul>
Add whatever valid css you like to the sample style definitions, ex (in red below):
Code:
/* Sample CSS definition for the example list. Remove if desired */
.navlist li {
list-style-type: square;
width: 135px;
background-color: #FFFFB9;
}
.navlist li a {
color:#444444;
text-decoration:none;
}
If you mean some other part of the markup, all you need to do is select it in the stylesheet (if it isn't already selected in the demo styles), and add the desired property/value style pairs.
Bookmarks