Gravity forms font sizing

I am trying to set up my gravity forms in Cornerstone and I can’t figure out how to modify the font styling. It is pulling the body text for the form questions but the descriptions are a super tiny font that I can not figure out where to change in Cornerstone. Also, where would I adjust the input box styling?

http://test.wildintelligence.org/wp/otters-after-school-program/

Hello There,

Thanks for writing in! Did you added this code?

body .gform_wrapper .gform_body .gfield_label {
    font-size: 18px;
}

If you haven’t, please check the theme options, X > Theme Options. There might be a setting designated for the Gravity Forms. If you can give us access to your site that would be great so that we can take a closer look.

Thanks.

Thanks for your response. I tried the code you suggested before but it only affects the size of the font for the field label, not the description. I did check in the Theme Options and there is no setting specifically for Gravity Forms. How do I give you access to my website?

I am talking about this text (see arrow)

Hi there,

The theme and gravity form has no internal integration so it can’t be stylized through theme or cornerstone. It’s best to contact the plugin author on this one.

As for the font size, please add this one.

.gform_wrapper .gfield_radio li label {
    font-size: 18px !important;
}

Thanks!

FYI - I was able to get the info from the developer. If anyone else needs this, try out:

   body .gform_wrapper .gfield_description {
	font-size: 18px;
        line-height: 18px; /* change the line height when changing the font */
}

Glad you’ve sorted it out :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.