Title: Different fonts..
Last modified: May 26, 2019

---

# Different fonts..

 *  [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/)
 * [http://i63.tinypic.com/9qimgo.png](http://i63.tinypic.com/9qimgo.png)
 * [http://i67.tinypic.com/10s4ric.png](http://i67.tinypic.com/10s4ric.png)
 * Why is the lower image text grey?? Doesn’t seem to be any obvious reason? Both
   are in Paragraph boxes and setting seem the same?
    -  This topic was modified 7 years ago by [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/).

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/topic/different-fonts-6/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/different-fonts-6/page/2/?output_format=md)

 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573308)
 * Please provide a link to a page on your site where we can see this. Thanks.
 *  Thread Starter [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573320)
 * Site is not live yet, I ave a coming soon page… i can’t seem to link images here…
   It usually works with them tiny pic images???
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573352)
 * I can see your images, but I want to be able to use the browser’s inspector tool
   to see the CSS, etc. Images are not helpful.
 *  Thread Starter [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573386)
 * Ah..
 * [http://www.therebelism.com](http://www.therebelism.com)
 * Mucho Gracias.
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573410)
 * All I see is a coming soon page. 🙁
 *  Thread Starter [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573420)
 * I did say that 🙂
 * I will take it off now for you… Thanks again for your time!
 * If you go to the about page… You willl se the text in question.. one is black(
   which looks right) and one is grey).
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573432)
 * The lower one is a standard `<p>`, with this CSS:
 *     ```
       p {
           font-size: 15px;
           font-family: "Nunito Sans", sans-serif;
           color: #8c9597;
           line-height: 25px;
           margin-bottom: 1.5em;
           font-weight: 400;
       }
       ```
   
 * The first one is black because your theme sets black as the color of the first`
   <p>` block in your content area:
 *     ```
       .page .entry-content p:first-of-type {
           color: #001936;
           border-bottom: 1px dotted #bababa;
           padding-bottom: 20px;
       }
       ```
   
 * So, I’d try this:
 *     ```
       p .entry-content {
          color: #001936;'
       }
       ```
   
 * **To add or override CSS:** use the “Additional CSS” option in the customizer._
   [https://codex.wordpress.org/CSS#Custom\_CSS\_in\_WordPress](https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress)_
 * Learn to use the [Chrome Developer Tools](https://developers.google.com/web/tools/chrome-devtools/)
   to help you see and test changes to your CSS.
 * As this is set by your theme, I recommend asking if there’s a way to tell the
   theme not to do that at [https://wordpress.org/support/theme/newspaper-x#new-post](https://wordpress.org/support/theme/newspaper-x#new-post)
   so the theme’s developers and support community can help you with this.
    -  This reply was modified 7 years ago by [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/).
 *  Thread Starter [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573440)
 * Oh right, so how it is – is how it is meant to be???
 * Should I just leave it?
 * Doesn’t looks as good to me??
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573479)
 * Ask the developers of your theme.
    -  This reply was modified 7 years ago by [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/).
 *  Thread Starter [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11573920)
 * OK this code, do I just insert it in the CSS at the bottom of the page??
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11574437)
 * **To add or override CSS:** use the “Additional CSS” option in the customizer._
   [https://codex.wordpress.org/CSS#Custom\_CSS\_in\_WordPress](https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress)_
 *  Thread Starter [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11578896)
 * Where do I put thid..
 * p .entry-content {
    color: #001936;’ }
 * So it is applied to the whole site?
 *  Thread Starter [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11579951)
 * I am just a bit worried I am going to put this code in CSS and mess it all up??
 * I am unsure that the greyed out text looks any good… Well No, it doesn’t…
 * I just add that code in the CSS box and boom the whole site or just that page?
   >?
 *  Moderator [Steven Stern (sterndata)](https://wordpress.org/support/users/sterndata/)
 * (@sterndata)
 * Volunteer Forum Moderator
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11579982)
 * If will have site-wide effect.
 * Note: i see a typo in my original reply. Use this CSS instead:
 *     ```
       p .entry-content {
          color: #001936;
       }
       ```
   
 *  Thread Starter [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * (@vanodyssey)
 * [7 years ago](https://wordpress.org/support/topic/different-fonts-6/#post-11580007)
 * Sod it, let’s give it a go!

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/topic/different-fonts-6/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/different-fonts-6/page/2/?output_format=md)

The topic ‘Different fonts..’ is closed to new replies.

## Tags

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

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 25 replies
 * 2 participants
 * Last reply from: [vanodyssey](https://wordpress.org/support/users/vanodyssey/)
 * Last activity: [7 years ago](https://wordpress.org/support/topic/different-fonts-6/page/2/#post-11580274)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
