Try the AnyLinks menu http://www.dynamicdrive.com/dynamici...anylinkcss.htm
Copy and save the anylink.js file
In the head section of your page, paste:
Code:
<script type="text/javascript" src="anylink.js">
/***********************************************
* AnyLink CSS Menu script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
<style>
.anylinkcss{
position:absolute;
margin-left:50px;
visibility: hidden;
border:1px solid black;
border-bottom-width: 0;
font:normal 12px Verdana;
line-height: 18px;
z-index: 100;
background-color: #E9FECB;
width: 205px;
}
.anylinkcss a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
}
.anylinkcss a:hover{ /*hover background color*/
background-color: black;
color: white;
}
}
</style>
In the body section, add as follows (in the href, the onClick is new, as is the div after it):
Code:
<a href="http://valhallasoap.com/cpsoap.html" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, 'anylinkmenu1')"><img src="http://valhallasoap.com/images/side_menu/old_world_soap.gif" alt="Old World Soap" width=202 height=72 border=0 id="Image7" onMouseOver="MM_swapImage('Image7','','http://valhallasoap.com/images/side_menu/old_world_soap_on.gif',1)" onMouseOut="MM_swapImgRestore()"></a><br>
<div id="anylinkmenu1" class="anylinkcss">
<a href="/soap1.htm">Soap1</a>
<a href="/soap2.htm">Soap2</a>
<a href="/soap3.htm">Soap3</a>
<a href="/soap4.htm">Soap4</a>
<a href="/soap5.htm">Soap5</a>
</div>
You can change background colors, and (obviously) the links would need to be your links. If you want to do this to other parts of your nav bar, you can - just follow the directions on the DD page.
Bookmarks