Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #689615

    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

    #690118

    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

    #690404

    Perfect! Thanks!!

    #690427
    #691425

    Thanks

    #692140

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Different fonts for h1, h2 and h3, h4, h5, h6’ is closed to new replies.