I’ve adjusted all the typography, but the fonts of this form are SO small.
How do I fix these?
I’ve adjusted all the typography, but the fonts of this form are SO small.
How do I fix these?
Hi @jupebox,
Thank you for reaching out to us, I checked your page and you’ve the following CSS added either coming from the gravity forms plugin settings or you might have added manually which is making the font size small:
@media only screen and (min-width: 641px) {
body .gform_wrapper .description, body .gform_wrapper .gfield_description, body .gform_wrapper .ginput_complex label, body .gform_wrapper .gsection_description, body .gform_wrapper .instruction {
font-size: 13px !important;
}
}
Check the plugin’s settings or the CSS section and adjust the font size as you need. Alternatively you can override it with custom CSS by adding the following code in the Theme Options > CSS:
@media only screen and (min-width: 641px) {
body .gform_wrapper .description, body .gform_wrapper .gfield_description, body .gform_wrapper .ginput_complex label, body .gform_wrapper .gsection_description, body .gform_wrapper .instruction {
font-size: 17px !important;
}
}
Hope this helps!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.