Results 1 to 3 of 3

Thread: Chrome CSS Drop Down Menu (v2.5) Help

  1. #1
    Join Date
    Oct 2008
    Posts
    48
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Chrome CSS Drop Down Menu (v2.5) Help

    Hey guys,
    I am trying to implement one of these nifty menu bars. I downloaded the zip, and copied and pasted the <ul> list it gives under it(the sample one), and for some reason it aint working at all!.... I would love to have the green one shown in the example...

    ANy help really appretiated. Link to page below:

    http://www.dynamicdrive.com/dynamici...rome/index.htm

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Please post a link to the page on your site that contains the problematic script so we can check it out.
    DD Admin

  3. #3
    Join Date
    Oct 2008
    Posts
    48
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Hey ddadmin, i dont have the site up uet(work in progress) but here is what i have so far.....I downloaded the zip and i coppied the demo on to my page(as a blueprint), but for some reason, it will not show up as the Chrome CSS Drop Down Menu

    Instead it shows up as a list with dots on the left site, instead of bar....I tried all day, and I cant figure it out...also note, that I downloaded the entire zip file into the folder this html file is in, so that should be fine.

    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> 
    <head> 
    <title>DrinkEnergy</title> 
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
    <link rel="stylesheet" type="text/css" href="chrometheme/chromestyle.css" /> 
     
    <script type="text/javascript" src="chromejs/chrome.js"> 
     
    /***********************************************
    * Chrome CSS Drop Down Menu- (c) 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> 
     
    </head> 
     
    <body> 
     
     
     
    <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> 
     
     
    <script type="text/javascript"> 
     
    cssdropdown.startchrome("chromemenu")
     
    </script> 
     
    
     
    </body> 
     
    </html>
    Last edited by Snookerman; 05-02-2009 at 06:06 AM. Reason: added [html] tags

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •