• Resolved redchikara

    (@redchikara)


    hello there!

    Im having an issue with the font on the main body of the home page. I have google fonts set properly and the font Im using shows everywhere on the site, but does does not change on the site description, or the main body text of the home page… Not sure whats going on here…

    https://www.redchikara.com

    Thanks!

    J

Viewing 2 replies - 1 through 2 (of 2 total)
  • The site description is in this html tag and CSS class

    <h2 class="site-description">Web Development</h2>

    So the CSS to change its font is this

    .site-description { font-family: "Averia Sans Libre"; }

    The text in the body is wrapped in span tag inside p tag like this

    <p>
    	<span style="font-family: Arial, Helvetica, sans-serif;">Text is here</span>
    </p>

    So we have to target our CSS selecter like this for it to work

    p span { font-family: "Averia Sans Libre" !important; }
    Thread Starter redchikara

    (@redchikara)

    Im gonna try that out.. Thanks for the feedback. Much appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Font issue’ is closed to new replies.