Results 1 to 4 of 4

Thread: AnyLink Drop Down Menu Font colour

  1. #1
    Join Date
    Nov 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default AnyLink Drop Down Menu Font colour

    1) Script Title: AnyLink Drop Down Menu

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

    3) Describe problem:
    Is there any way one can change the link font colour from the default blue to another colour e.g. white?

  2. #2
    Join Date
    Nov 2006
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You need to have a css style defined somewhere else.

    For example, i you want your active links to be white, you would need to put this in your css:

    Code:
    /*defines active links color*/
    a {
    	color: #E7EFE7;
    	background: inherit;
    	text-decoration: none;
    }
    
    /*defines the color the links turn when you hover your mouse*/
    a:hover {
    	color: #FFFFFF;
    	background: inherit;
    	text-decoration: underline;
    }
    Also, I don't know how extensive your html/css knowledge is, but just so you know, i made your unhovered links be a really light grey and your hover color white. that way there is some slight difference. I also added an underline to the hovered links.

  3. #3
    Join Date
    Nov 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Brilliant, thanks!

  4. #4
    Join Date
    Nov 2006
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    happy to help!

    let me know if it doesn't work.

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
  •