At Ask Me Help Desk you can ask questions in any topic and have them
answered for free by our experts. To ask questions or participate in
answering them you must register for a free account. By registering you
will be able to:
Get free answers from experts in any of our 300+
topics.
Remember that classes are case sensitive so if you use caps in the head, use them in the links as well. Good luck!
Hello. Thanks for replying. I tried the exact same codes you gave me, but it doesn't
seem to work. I don't know what I'm doing wrong. Below is my actual HTML coding:
...it only follows the first hover line "a:hover{text-decoration: underline; color: #4040FF;}"
I hope you can help me out and point out what I did wrong.
It would seem that I carried over a mistake from your original code. In the folowing two lines: a.primary:hover{text-decoration: color: #808080;}
a.secondary:hover{text-decoration: color: #FF0000;} There is a text-decoration: statement with no declaration. If you want a text decoration, such as underline, you must add it after the satement, as well as a semicolon. If you do not want anything other than the color change on hover, replace those two lines with these: a.primary:hover{color: #808080;}
a.secondary:hover{color: #FF0000;}
It would seem that I carried over a mistake from your original code. In the folowing two lines: a.primary:hover{text-decoration: color: #808080;}
a.secondary:hover{text-decoration: color: #FF0000;} There is a text-decoration: statement with no declaration. If you want a text decoration, such as underline, you must add it after the satement, as well as a semicolon. If you do not want anything other than the color change on hover, replace those two lines with these: a.primary:hover{color: #808080;}
a.secondary:hover{color: #FF0000;}
Good luck!
It works now Thank you so much!
You've been a great help!