I read through the whole forum here and I am at a loss, I am trying to add a drop down menu on my site, for the top navigation menu. I have looks through a few shops that have this, and i just can't figure this out. I was trying to use the dynamic drive menu found here:
Dynamic Drive DHTML Scripts- Chrome CSS Drop Down Menu
I uploaded the JS files and CSS file to my site, and added the HTML and it doesn't even show :(
here is my header where I reference the js and CSS files:
and here is the menu where I want to place it.
I would ideally like a dynamic solution, but if i need to code it like that, I'm OK with that.
does anyone have any help they can give me?
-Chris
Dynamic Drive DHTML Scripts- Chrome CSS Drop Down Menu
I uploaded the JS files and CSS file to my site, and added the HTML and it doesn't even show :(
here is my header where I reference the js and CSS files:
HTML Code:
[META] <link rel="stylesheet" type="text/css" href="assets/templates/v30014/menu/chrometheme/chromestyle.css" /> <script type="text/javascript" src="assets/templates/v30014/menu/chromejs/chrome.js"></script> <script language="JavaScript" src="assets/templates/common/js/utilities.js" type="text/JavaScript"></script> <link rel="StyleSheet" href="assets/templates/[template]/css/[stylesheet]" type="text/css" media="screen"> <!--START: FRAME_RSSFEEDS-->
HTML Code:
<!--START: FRAME_MENU--> <table cellspacing="0" cellpadding="5" border="0" id="Table3"> <tr> <td>**</td> <!--START: menuitems_view--> <!--START: TOP_LINK_FORMAT--> <td> <div class="chromestyle" id="chromemenu"> <ul> <li><a href="http://www.dynamicdrive.com">Home</a></li> <li><a href="#" rel="dropmenu1">Resources</a></li> <li><a href="#" rel="dropmenu2">News</a></li> <li><a href="#" rel="dropmenu3">Search</a></li> </ul> </div> <!--1st drop down menu --> <div id="dropmenu1" class="dropmenudiv"> <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 drop down menu --> <div id="dropmenu2" class="dropmenudiv" style="width: 150px;"> <a href="http://www.cnn.com/">CNN</a> <a href="http://www.msnbc.com">MSNBC</a> <a href="http://news.bbc.co.uk">BBC News</a> </div> <!--3rd drop down menu --> <div id="dropmenu3" class="dropmenudiv" style="width: 150px;"> <a href="http://www.google.com/">Google</a> <a href="http://www.yahoo.com">Yahoo</a> <a href="http://www.msn.com">MSN</a> </div> </td> <!--END: TOP_LINK_FORMAT--> <!--END: menuitems_view--> </tr> </table> <!--END: FRAME_MENU-->
does anyone have any help they can give me?
-Chris
Comment