I am not good at CSS and I can’t figure this out.
In the general styling section of the Enfold settings, it shows all the links as underlined. However, on the live site, they are not.
I would like to have the links in the main body and footer of the pages to be underlined. How can I do this? (I don’t want the menu items underlined).
Hey prerules,
Thank you for your question, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:
#main a, #footer a {
text-decoration: underline;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Thanks!
That works great. However, it also underlines buttons. Is there a way so that it is only in text?
Hi,
Please try this instead:
#main a:not(.avia-button), #footer a:not(.avia-button) {
text-decoration: underline;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Perfect!
Thank you so much!
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike