Results 1 to 3 of 3

Thread: AnyLink Drop Down Menu

  1. #1
    Join Date
    Jul 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default AnyLink Drop Down Menu

    hi guys i was looling at this script AnyLink Drop Down Menu http://www.dynamicdrive.com/dynamici...pmenuindex.htm

    and i have been playing around with it for a while now and have modifyed it a bit can someone tell me how to modify the colour that highlights the link not the text its self, the bright yellow bar that covers it thanks,
    Last edited by eamondo; 07-11-2005 at 04:13 PM.

  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

    Change yellow to whatever valid HTML color name you want:
    Code:
    #dropmenudiv a:hover{ /*hover background color*/
    background-color: yellow;
    }
    You can use hex or rgb values you prefer.

    Hex example:
    Code:
    #dropmenudiv a:hover{ /*hover background color*/
    background-color: #CFCFCF;
    }
    rgb example:
    Code:
    #dropmenudiv a:hover{ /*hover background color*/
    background-color: rgb(190, 190, 180);
    }
    - John
    ________________________

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

  3. #3
    Join Date
    Jul 2005
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    WOW man thanks
    Last edited by eamondo; 07-13-2005 at 04:34 PM.

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
  •