- This topic has 1 reply, 2 voices, and was last updated 2 years, 2 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The forum ‘Azuma’ is closed to new topics and replies.
Home › Forums › Azuma › How can you change the font size of post Author and post date above each post
At this moment the post author and date show up with font size 26 which is way to big.
I’ve looked in the customizer but don’t find any place where I can change this.
also tried several CSS options but nothing….
You can change this with some custom CSS added to Appearance > Customize > Additional CSS.
This will change the font size of both author and post date:
.single .entry-meta {
font-size: 16px;
}
If you want to make author and post date different sizes, use the following CSS instead.
For the author name:
.single .entry-meta .byline {
font-size: 18px;
}
For the post date:
.single .entry-meta .posted-on {
font-size: 16px;
}