Hi,
I like my URL to be red without underline.
But when the mouse hover above the link i like a red underlined URL.
Therefor i’ve change: Custom wp_head() code:
<style>
a {
color: #EE3224;
}</style>
How can i add the hover underline setting?
Thanks for all the help
2 Answers
In style.css file find and delete !important
a {
outline: none!important;
text-decoration: none!important;
Maybe someone advise how to do this using Custom wp_head () code without interfering with the style.css
Hello Leon !
You can try code as Mirek suggested, or you can try this one (add to the Custom wp_head ();
<style>
a:hover {
color: #EE3224;
text-decoration: underline !important;
}
</style>
Hope this helps !
As a simple 🙂
Thanks
Please login or Register to submit your answer