How do you set hyperlinks in page content (not header, not footer) to display an underline?
This CSS code didn’t work:
avia_textblock a {
text-decoration: underline;
}
.entry-content a {
text-decoration: underline;
}
Hi m!
Please try changing your code to following one
.entry-content a {
text-decoration: underline !important;
}
Cheers!
Yigit
That didn’t work.
Hey!
There is not such sentence on the page you posted. Could you please check the link once again? :)
Best regards,
Yigit
Sorry, try this link:
Hi!
That is because your text is inside a heading element. However you can add following code to Quick CSS to have it underlined
.iconbox_content_container a {
text-decoration: underline!important;
}
Cheers!
Yigit
Perfect, thank you very much!!!