JeffreyPierce
6 years agoQrew Trainee
Font CSS on built-in form is different in one place
On all of my basic "Main Forms", the Section Heading fonts all look like this:
------------------------------
Jeffrey Pierce
------------------------------
I think those Section Headings are displayed in the font "Gibson-SemiBold". Here is the CSS for those strings.
body.UXV2 .WithToggleSections .sectionTitle {
cursor: pointer;
vertical-align: middle;
font-size: 16px;
font-family: 'Gibson-SemiBold', Helvetica, Arial, Sans-Serif;
On just one form, the fonts look like this:
body.UXV2 .WithToggleSections .sectionTitle {
margin-left: 0;
cursor: pointer;
vertical-align: middle;
font-size: 18px;
font-family: "HelveticaNeue-Roman", "HelveticaNeue", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
I created a new form from scratch, and it still looks like this, with blue Helvetica headings. Oddly enough, the preview displays as expected with the Gibson font. Not a fatal problem, but ... can I fix this?
body.UXV2 .WithToggleSections .sectionTitle {
cursor: pointer;
vertical-align: middle;
font-size: 16px;
font-family: 'Gibson-SemiBold', Helvetica, Arial, Sans-Serif;
On just one form, the fonts look like this:
Those section headings seem to be HelveticaNeue-Roman, per the CSS:
body.UXV2 .WithToggleSections .sectionTitle {
margin-left: 0;
cursor: pointer;
vertical-align: middle;
font-size: 18px;
font-family: "HelveticaNeue-Roman", "HelveticaNeue", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
I created a new form from scratch, and it still looks like this, with blue Helvetica headings. Oddly enough, the preview displays as expected with the Gibson font. Not a fatal problem, but ... can I fix this?
------------------------------
Jeffrey Pierce
------------------------------