Format text fields
Posted: 05 May 2021
Sorry for this stupid question I need to force specific font and size in my text fields (people copy/paste the info there often which results in all kinds of formatting) I was trying to use CSS editor and put there:
textarea {font-size: 12px;
font-family: Arial, Helvetica, sans-serif;}
or
input[type=text] {font-size: 12px;
font-family: Arial, Helvetica, sans-serif;}
But this doesn't work. I need to make sure when they save the form text in the text fields are changed to the required format. Is it possible?
textarea {font-size: 12px;
font-family: Arial, Helvetica, sans-serif;}
or
input[type=text] {font-size: 12px;
font-family: Arial, Helvetica, sans-serif;}
But this doesn't work. I need to make sure when they save the form text in the text fields are changed to the required format. Is it possible?