Results 1 to 3 of 3

Thread: Anylink Drop Down Menu.. need to chg color

  1. #1
    Join Date
    Mar 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Anylink Drop Down Menu.. need to chg color

    Hi .. I searched the 13 pages of message here first incase someone asked this already.. but can't find the answer.

    I need to change the background color of the pop up menu box as it pops up.. DID THAT ALREADY.. and once you are over the menu item you want to choose.

    Basically the script has a light yellow which I figured out how to change, then a very bright yellow that I CAN'T figure out how to change. I just want it to turn white NOT bright yellow.

    Can anyone help me please?

    Thanks!

  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

    In the style section, change yellow to any valid css color name or hex value, here:

    Code:
    #dropmenudiv a:hover{ /*hover background color*/
    background-color: yellow;
    }
    From what you say, use:

    Code:
    #dropmenudiv a:hover{ /*hover background color*/
    background-color: white;
    }
    - John
    ________________________

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

  3. #3
    Join Date
    Mar 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    John .. MANY THANKS!

    If it were any closer it would have bitten me on the nose!!



    I owe ya!

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
  •