Website in question:
http://beeghly.staging.wpengine.com/bridal/announce-your-engagement/
Trying to get Google Fonts working. I am using WP Google Fonts and it is changing the fonts within the core of the site, however, it appears that everything is custom-coded in this theme (seem my font sample page I created to test it).
H1-H5 are to be Allura font.
H6 is to be Cardo font.
On this page — in the side widget, I did an inspect element and see that it is H4 class widgettitle.
I added this to the theme’s custom css section:
.widgettitle {
font-family: Allura, cursive;
font-weight; 400;
}
Nothing happened.
In the form (Gravity Forms), I identified the section headers (which show script, but very small) as:
.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
font-weight: bold;
font-size: 1.3em;
}
I added this to custom css section:
.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
font-weight: bold;
font-size: 2.3em;
}
Nothing changed.
Also, in the footer, the header didn’t change to Allura.
I thought that I was identifying these sections properly, but it appears that I’m missing something.
Any help is greatly appreciated.