Ahoy,
So I added a custom font to by site
h1, h2, h3, h4, h5, h6 {
font-family: 'TiemposHeadlineWeb', arial, verdana !important;
}
but I don’t want the font to be h1, h2, h3, h4, h5, h6 seeing the font is all the same. How can I make the ‘TiemposHeadlineWeb’ font just be h1 and h2 and have a different font be h3, h4, h5, h6?
I would like the h3, h4, h5, h6 to be Roboto with a font weight of 300
Hey mcraig77,
Try this instead:
h1, h2 {
font-family: 'TiemposHeadlineWeb', arial, verdana !important;
}
h3, h4, h5, h6 {
font-family: 'Roboto', arial, verdana !important;
font-weight: 300 !important;
}
Best regards,
Rikard
Perfect! Thanks!!
Having font issues too.
@Rikard can you help? https://kriesi.at/support/topic/css-font-styling-for-child-theme-quick-css/
Thanks
Hi,
glad we could help @mcraig77. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.
Best regards,
Andy