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?
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?
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:
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.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; }
Brilliant, thanks!
happy to help!
let me know if it doesn't work.
Bookmarks