I found this code with inspect element:
#top .custom-color-heading a {
text-decoration: underline;
}
is there any way to remove the underline from Enfold Theme Options or do I have to enter a custom CSS code for it?
if so, what would be the code?
Thanks!
Hey 0_o,
You would need to override that with custom CSS, please try this in Quick CSS:
#top .custom-color-heading a {
text-decoration: none;
}
Best regards,
Rikard
Thank you!