CSS does not overlap

1

Even though! important, I can not increase the font-size of the text in this form. I've tried putting font-size:

  • in custom CSS (theme options) I'm using
  • in the plugin's CSS (Gravity Forms)

And none of them worked. How can I increase the font size on this particular form? Thank you.

link

    
asked by anonymous 29.11.2016 / 20:32

1 answer

0

You should use the label class

.gform_wrapper .top_label .gfield_label{
  font-size: 20px;
}

After changing and saving you need to check in the browser inspector if it is modifying the size.

Through the link you placed, I could not see your change to just the default theme.

With !important should work.

    
31.03.2017 / 09:19