1. I asked a general question about using Google fonts and it was excellent. Now i want to know how can i use one Google font for content and another Google font for title and another Google font for sidebar of my website?
This is exactly the same as your previous support question. The same CSS codes are below. The first one targets the post title and the second targets the content. Just change the Font-Family for each to change the fonts used.
.blog-view .entry-title a, .single-view .entry-title a {
font-family: 'Droid Sans', Arial, Sans-serif;
font-size: 20px;
}
.blog-view .entry-content, .single-view .entry-content {
font-family: 'Droid Sans', Arial, Sans-serif;
font-size: 14px;
}
The first line has
.blog-view .entry-title a
(Which targets the title when on the blog)
and
.single-view .entry-title a
(Which targets the title when viewing a single page)
for sidebar
.sidebar {font-family: 'Droid Sans', Arial, Sans-serif;}
2. Also i want to know is there a way to use one “color of content” in home page and another “color of content” in the post page? They are the same currently. Can i have different colors for them?
Following the sample above:
.blog-view {
background: #FFF;
}
.single-view {
background: #FFF;
}
https://www.w3schools.com/css/css_syntax.asp
if you’re using firefox, installing Firebug will help a lot with these things. If your using chrome you could use the inspect element tool(ctrl+shift+i)