Hi, in my contact form I am looking to add placeholder text which disappears upon clicking the box. Please see images.
Any help would be greatly appreciated, thanks!
Hi, in my contact form I am looking to add placeholder text which disappears upon clicking the box. Please see images.
Any help would be greatly appreciated, thanks!
Hi @AllOut ,
Go to Assets > base.css and paste this at the bottom of the file:
.field__input:focus {
padding: 1.5rem !important;
}
.field__input::placeholder {
opacity: 1 !important;
}
Hope it helps!
That’s perfect! Thank you so much!