Can anyone help me?
I'm trying to style three menu items differently.
I have the twenty-ten theme. Using the wp admin I added a class to my menu items then targeted each class with the code below. For some reason the first item in the menu doesn't change when hovered but the second two do.
#access.store a:link, #access.store a:visited {color:#ffffff; background: transparent; text-decoration: none;}
#access.store a:hover, #access.store a:active {color:#28ace2; text-decoration: none;}
#access .blog a:link, #access .blog a:visited {color:#ffffff; background: transparent; text-decoration: none;}
#access .blog a:hover, #access .blog a:active {color:#eb0a8d; text-decoration: none;}
#access .contact a:link, #access .contact a:visited {color:#ffffff; background: transparent; text-decoration: none;}
#access .contact a:hover, #access .contact a:active {color:#f8ef24; text-decoration: none;}