Results 1 to 2 of 2

Thread: Drop down menu

  1. #1
    Join Date
    Jan 2012
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Drop down menu

    1) Script Title: All Menu generator

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici.../generator.htm

    3) Describe problem: How do I add hyperlinks to my drop down lists on my drop down menu.

    Please help. I don't know much code. I have got my menu working nicely but how do I add hyperlinks to my drop down lists on my menu?

    I also want to restyle the lists to fit in with my website. How do I do it?
    I have managed to style the top bar with CSS but how do I restyle the drop down lists. As I want to change the background colour and the font.

    Thanks
    Mirri
    Last edited by jscheuer1; 01-15-2012 at 11:38 AM. Reason: Format

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Where you have stuff like (from Step 3 on the demo page):

    Code:
    <!--Top Drop Down Menu 1 HTML-->
    
    
    <ul id="ddsubmenu1" class="ddsubmenustyle">
    <li><a href="#">Item 1a</a></li>
    <li><a href="#">Item 2a</a></li>
    <li><a href="#">Item Folder 3a</a>
      <ul>
      <li><a href="#">Sub Item 3.1a</a></li>
      <li><a href="#">Sub Item 3.2a</a></li>
      <li><a href="#">Sub Item 3 . . .
    Change the href attributes to your own, and the texts as well. For example:

    Code:
    <li><a href="#">Item 1a</a></li>
    could become:

    Code:
    <li><a href="news.htm">News</a></li>
    You can of course add or remove li items and/or whole ul blocks as needed.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    Mirri (01-15-2012)

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
  •