You'll have to experiment with the page a bit, so you can comment out by using <!-- --> around the menu you currently have and replace it with the following after the <body>
Code:
<!--1st anchor link and menu -->
<a href="http://www.dynamicdrive.com" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, 'anylinkmenu1')">Anchor Link</a>
<div id="anylinkmenu1" class="anylinkcss">
<a href="http://www.dynamicdrive.com/">Dynamic Drive</a>
<a href="http://www.cssdrive.com">CSS Drive</a>
<a href="http://www.javascriptkit.com">JavaScript Kit</a>
<a href="http://www.codingforums.com">Coding Forums</a>
<a href="http://www.javascriptkit.com/jsref/">JavaScript Reference</a>
</div>
<!--2nd anchor link and menu -->
<a href="http://www.dynamicdrive.com" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, 'anylinkmenu2')">Anchor Link 2</a>
<div id="anylinkmenu2" class="anylinkcss" style="width: 150px; background-color: lightyellow">
<a href="http://www.cnn.com/">CNN</a>
<a href="http://www.msnbc.com">MSNBC</a>
<a href="http://www.google.com">Google</a>
<a href="http://news.bbc.co.uk">BBC News</a>
</div>
And then put this between the <head> tag:
Code:
<link rel="stylesheet" type="text/css" href="anylink.css" />
<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>
Make sure you save the .css and .js files from the page I linked to earlier, and then from there you should be able to play around with the CSS, adding background-color, borders, etc etc, to get the effect you want.
Edit: Here's more specific code - Go to this part of your code:
Code:
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="lighting.htm">Lighting</a> </li>
<li><a href="sound.htm">Sound </a></li>
<li><a href="effects.htm">Effects</a></li>
<li><a href="packages.htm">Packages</a></li>
<li><a href="terms.htm">Terms</a></li>
<li><a href="contact.htm">Contact</a></li>
<li></li>
</ul>
</div>
<!-- end #menu -->
And then edit it like this:
Code:
<li><a href="sound.html" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, 'soundmenu')">Sound</a></li>
Now that's done, change the "soundmenu" div:
Code:
<div id="soundmenu" class="anylinkcss">
<a href="#">Your Drop Down Link HERE</a>
</a>
</div>
From that, you should be able to edit the rest of the links in the same sort of way, post a reply if you continue to have problems with it.
Hope it helps anyway.
Bookmarks