What are the names of the default fonts
- The topic ‘What are the names of the default fonts’ is closed to new replies.
Need help? Check out our Support site, then
What are the fonts used for body and headings? I don’t want to change them, but would like to coordinate my resume to the site theme by using the same fonts and colors. Also, is there a way to make the heading color be the same as the portfolio rollover color? When I go to <Customize, Colors> I only see the blue and dark gray, not the rose color of the headings.
The blog I need help with is: (visible only to logged in users)
Hello @lujandesignselpasotelnet
Your main header is: “Vesper Libre” or “Minion Pro”
The heading (H1) and body font is: “Quattrocento Sans” or “Helvetica Neue” >
To change the background color in your header, you can add the following code to the CSS in your theme customization:
https://cloudup.com/cNf60BZxp-u
<code>
.site-header {
background-color: #5087a5 ;}
</code>
Thank you!!
Thanks for the response above, very helpful. However, I think I used the wrong terminology and mistated my question about the color I want to edit. On the home page (which is a static page), when a user rolls over a project, the rollover is the pretty color blue (#5087a5). But when someone clicks on it to view that project, the headline font of the post page is a rose/pink color. So it is the color of that rose/pink font that I’d like to change to be blue. Does your answer above still apply now that I’ve clarified the question? It’s not really a background color I want to change, but a font color.
Hey!
In that case, you’ll just need to add this code as well:
.portfolio .entry-title {
color: #5087a5;
}
Let me know if that works!
Exactly what I needed. Thank you so much!!!