Hi – could you tell me how I can change the styling of a Gravity Forms? The form is here: http://www.littlefoxwebdesign.co.uk/treeport/?page_id=3105 – I’d like to increase the size and maybe colour of the field titles and also increase the size/colour of the Description that I’ve got under some fields.
Thank you!
Hey kathrynmichaud!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.gform_wrapper .top_label .gfield_label { color: red; font-size: 18px!important; }
Regards,
Yigit
Hi – that works brilliantly for the field label, but doesn’t affect the description that appears below some of the fields? Also, is it possible to increase the size of the options text that appears, for example, at the side of toggle fields?
Thank you!
Hey!
Please add folllowing code to Quick CSS as well
div.gfield_description { color: red; font-size: 18px!important; }
.gform_wrapper select { font-size: 18px!important; }
Cheers!
Yigit
Hi – that works great for the description now, but the: .gform_wrapper select { font-size: 18px!important; } hasn’t affected the options text i.e. yes/no next to a toggle field …
Hi!
Please add following code
.gform_wrapper .gfield_radio li label { font-size: 18px!important; }
Regards,
Yigit
Brilliant – works perfectly – thank you!