How to make hover on simple text link? If i go with mouse over the link it doesnt change color. In my case i want change from this #8a949b to this #ff6642

How to make hover on simple text link? If i go with mouse over the link it doesnt change color. In my case i want change from this #8a949b to this #ff6642

Hi @graphictaste,
Thanks for reaching out.
You have applied the color through <span>, try adding it like this
<a href="https://www.graphictaste.com/" class="footer_link_text">www.graphictaste.com</a>
Then add this CSS to Theme Options > CSS
a.footer_link_text {
color: #8a949b;
}
a.footer_link_text:hover {
color: #ff6642;
}
Cheers!
Awesome. It works 
Glad to know it works. Have a great day! 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.