Hi guys,
I need to change the font for the labels and field content on a form to Roboto for everything. I initially used a Theme for the form so am having to override the font settings with CSS. I've gotten as far as the following CSS for a single label
/*Import Roboto font*/ @import url('https://fonts.googleapis.com/css?family=Roboto'); /*Set fonts*/ #q66 label { font-size: 14px !important; font-family: "Roboto", sans-serif ; }
Is this the correct approach? Am I going to going to have to specify "cf.field" and all the ids for every field in order to update the label and field fonts to Roboto across the whole form?
Thanks,
Mike