Log into your WordPress admin and navigate to ‘Avada’ > ‘Custom CSS’.
In the ‘CSS Code’ field enter these lines of text:
/* underline all links on all pages and posts*/
#main a:link, a:visited{
text-decoration: underline;
}
Click ‘Save Changes’.
3 thoughts on “Underline all links in all pages and posts WordPress Avada Theme”
If you mean to style links that are inside the post content body (e.g. in the text paragraphs), you can use a bit of CSS like below. You can add the CSS to your Theme Options -> Custom CSS area:
.single .post-content p a {
color: #ff0000 !important;
text-decoration: underline !important;
}
many thanks! Be happy
Thanks. But this also underlines text on buttons. :}
If you mean to style links that are inside the post content body (e.g. in the text paragraphs), you can use a bit of CSS like below. You can add the CSS to your Theme Options -> Custom CSS area:
.single .post-content p a {
color: #ff0000 !important;
text-decoration: underline !important;
}