The CSS code that removes the underline hyperlinks and replace with a hover colour should be as below (from another thread). Yet is doesn’t work for me if I put it into the quick-css.
Any suggestions?
a {
color: blue; /* non-hover color */
}
a:visited {
color: yellow; /* visited link color */
}
a:hover {
text-decoration: none;
color: red; /* hover color */
}
Hi nigelpengelly!
Please try adding !important rule as following
a:hover {
text-decoration: none !important;
color: red !important; /* hover color */
}
If that does not work as well, please create a temporary admin login and post it here privately
Regards,
Yigit
Yigit,
Hmm, still not working.
My login is below.
Nigel.
Hi Nigel,
Thanks for the details but we will need a URL as well to be able to log in, please post that as well.
Regards,
Rikard
Sorry, here it is…
Hey!
Code works as expected on my end, please see screenshot in private content field below.
To remove underline from links, i added following code to bottom of Quick CSS field
#top .av_inherit_color a {
text-decoration: none;
}
If that is not what you wanted, please remove the code and post a screenshot showing the changes you would like to make.
Cheers!
Yigit