Archived topic
Form Font
3 replies · Started by Lee on June 29, 2021
Hey guys,
Could you please tell me how I might change the font on my contact form to resemble the fonts that I'm using throughout my website?
Many thanks,
Lee.
Hi there,
the form is using the Body font which looks to be set to:
font-family: Georgia, Times New Roman, Times, serif;
Whereas the Headings are set to Helvetica - do you want the form labels to match the headings ? If so you can add this CSS:
.wpforms-field-label,
.wpforms-field-sublabel {
font-family: helvetica;
}
and if you want to change the main label font size:
div.wpforms-container-full .wpforms-form .wpforms-field-label {
font-size: 18px !important;
}
Brilliant. Thank you.
You're welcome