Hi
How can I implement CSS border-bottom only for text links, not for images and the like?
I would like to use a 1px bottom border for the links and 2px on hover.
Thanks you for your help
Michael
Hey mleonhard,
You can activate the custom CSS class for builder element: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/, and assign a class to the elements you want to underlined. Then add this to Quick CSS:
a.your-custom-class {
border-bottom:1px solid red;
}
a.your-custom-class:hover {
border-bottom:2px solid red;
}
You can assign the class to your html markup as well:
<a href="#" class="your-custom-class">Link</a>
Thanks,
Rikard
Excellent, just what the doctor ordered
thank you for your quick help
Hi,
Glad we were of help :)
Feel free to reach out to us again if there is anything you need assistance with.
Best regards,
Jordan