Title: Font issue
Last modified: August 30, 2016

---

# Font issue

 *  Resolved [redchikara](https://wordpress.org/support/users/redchikara/)
 * (@redchikara)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/font-issue-7/)
 * 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…
 * [http://www.redchikara.com](http://www.redchikara.com)
 * Thanks!
 * J

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [paulwpxp](https://wordpress.org/support/users/paulwp/)
 * (@paulwp)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/font-issue-7/#post-6327245)
 * 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](https://wordpress.org/support/users/redchikara/)
 * (@redchikara)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/font-issue-7/#post-6327300)
 * 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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/amadeus/2.1.4/screenshot.png)
 * Amadeus
 * [Support Threads](https://wordpress.org/support/theme/amadeus/)
 * [Active Topics](https://wordpress.org/support/theme/amadeus/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/amadeus/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/amadeus/reviews/)

## Tags

 * [google fonts](https://wordpress.org/support/topic-tag/google-fonts/)

 * 2 replies
 * 2 participants
 * Last reply from: [redchikara](https://wordpress.org/support/users/redchikara/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/font-issue-7/#post-6327300)
 * Status: resolved