I want all the links on my site to be automatically underlined. For some reason that isn’t the default. How can I fix that?
Hey Takara22,
Thank you for contacting us.
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
/* CSS - */
#top .main_color p a {
text-decoration: underline;
}
Best regards,
Vinay
I found a regular WordPress solution for this by doing a quick css:
a {
text-decoration: underline;
}