How can I change the font of post? #506
Replies: 3 comments 16 replies
-
All I did was create a @media not speech {
body {
font-size: 16px;
}
}
@media screen and (min-width: 28em) {
body {
font-size: 17px;
}
}
@media screen and (min-width: 36em) {
body {
font-size: 18px;
}
}
@media screen and (min-width: 48em) {
body {
font-size: 19px;
}
}
@media screen and (min-width: 56em) {
body {
font-size: 20px;
}
}
@media screen and (min-width: 64em) {
body {
font-size: 21px;
}
}
.entry-footer,
.footer,
.post-meta {
font-size: .8em;
}
#menu a,
.pagination a {
font-size: .9em;
}
.logo a {
font-size: 1.6em;
}
.archive-meta,
.entry-content,
.page-content,
.page-footnote {
font-size: .9em;
} HTH. Also, in future this type of request belongs in 'Discussions' rather than an issue. |
Beta Was this translation helpful? Give feedback.
-
Have you tried creating a file such as body {
font-family: 'Comic Sans MS', Verdana, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
} |
Beta Was this translation helpful? Give feedback.
-
You need something like
in your CSS and to have the *.woff files in your The best thing might be to find a theme that uses a web font using pure CSS (the example above is SCSS so might not be exactly right). Also, looking at Google's information on 'Google Web Fonts' ought to help. |
Beta Was this translation helpful? Give feedback.
-
I have read the FAQs but I still have no idea. I have tried to modify each css which including the configuration of the font,but it didn't work.
Beta Was this translation helpful? Give feedback.
All reactions