hi, i want a line under ‘send’ to appear in my contact page if you hold your cursor on it, is this possible?
https://winandgetrich.com/pages/contact
Topic summary
A user wants to add an underline effect to the ‘send’ button on their contact page when hovering over it.
Solution provided:
- Edit the
base.cssfile located in the Assets folder - Add the following CSS code at the bottom:
.contact__button.button:hover {
text-decoration: underline;
}
This CSS targets the contact button and applies an underline text decoration on hover state.
Hello @winandgetrich ,
Edit base.css under Assets and add this css at the bottom.
.contact__button .button:hover {
text-decoration: underline;
}
Thanks