Hover states
Hi
I have some custom css code on this page: http://185.123.97.227/~capita72/refugeethefilm.com/the-filmmakers
to make the h3 hyperlinks different colours (hover etc) as I wasn't able to do this in the muffin builder. This is what I have put in the CSS box:
/* unvisited link */
a:link {
color: white !important;
}
/* visited link */
a:visited {
color: white; !important;
}
/* mouse over link */
a:hover {
color: #FF712F !important;
}
/* selected link */
a:active {
color: #444444;
}
It has worked how I wanted to but the problem is it's effecting the styling of my overlay menu - which is following this code too. Is there anyway to only make it the H3 tag?
thanks in advance
Comments
to make only h3 links different color, you need to use the following css: