Subscribe form

Hi Guys
hope you are all well
it may be just me - but the text for name and email address is really light on the forms on the website I am building sallycanning.com not sure how to darken the text to make it clearer. Am I missing the obvious? thank you for your help

Hey Paula,

There’s no BB setting to set that, but can certainly be done via CSS. Try adding the snippet below.

.fl-module-subscribe-form input::-webkit-input-placeholder {
   color: red;
}
.fl-module-subscribe-form input:-moz-placeholder { /* Firefox 18- */
   color: red;  
}
.fl-module-subscribe-form input::-moz-placeholder {  /* Firefox 19+ */
   color: red;  
}
.fl-module-subscribe-form input:-ms-input-placeholder {  
   color: red;  
}

Ben

Great thank you

No worries at all, Paula! Enjoy! :slight_smile:

Ben