Hi Mike
In the text block “Skriv til os” (write to us) the e-mail and linkedIn should be underlined.
In preview there are both underlined, but not in front-end or live.
How or where can I make those links visible?
Best regards
Lene
Hey Lene,
I assume that you mean on hover, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top a:hover {
text-decoration: underline;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi,
Try this css instead so that only links in a paragraph will underline, which will exclude the menu and buttons:
#top p > a:hover {
text-decoration: underline;
}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi Lene,
Please try to add this CSS code:
#top #socket a:hover {
text-decoration: underline;
}
Best regards,
Nikko