Hi,
I am a beginner. For my wordpress site, I used a Google Fonts Typography plugin & selected 3 fonts - Futura (headings), Merriweather (paragraphs) and Open Sans (buttons). It applied the font family to futura (font-family: Futura,Trebuchet MS,Arial,sans-serif), but not to the other two. I want to apply that -
replace
{font: Merriweather} by {font-family: Merriweather, Impact, Serif;}
and replace
{font: Open Sans} by {font-family: “Open Sans”, Tahoma, sans-serif;}
everywhere. I tried adding it to additional css on my site, but it still shows a single font for the other two everywhere (I checked using the Inspect feature).
What I’ve tried:
p {
font-family: Merriweather, Impact, Serif;
}
:root {
–font-base: Merriweather,Impact, Serif;
–font-headings: Futura, Trebuchet MS, Arial, sans-serif;
–font-input: Open Sans, Tahoma, sans-serif;
}
body, #content, .entry-content, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .widget-area, .widget, .sidebar, #sidebar, footer, .footer, #footer, .site-footer {
font-family: Merriweather,Impact, Serif;
}
and yet, I still see only
body, #content, .entry-content, .post-content, .page-content, .post-excerpt, .entry-summary, .entry-excerpt, .widget-area, .widget, .sidebar, #sidebar, footer, .footer, #footer, .site-footer {
font-family: “Merriweather”;
}
Any way to add the alternative fonts to the font family? Thank you.