Good timing to post your question because I was about to go offline because it’s just after midnight here ??
Anyway, this is the styles that does that line where the date, author, etc are located. You can copy it and then paste it into the Additional CSS tab in the customizer.
.entry-meta {
text-transform: uppercase;
margin: 20px auto;
font-size: 0.75rem;
letter-spacing: 1px;
font-weight: 400;
}
Change anything there you want there, but because you aked how to make it smaller, you would just need this only:
.entry-meta {
font-size: 0.75rem;
}
I use rem for size, which is better than px, but if you want to know what rem vs px is, there is an online conversion tool for this. Even though is says em to px, doing rem to px is basically the same. For example, 1em (or 1rem) is 16px.
Of course, if you want to just use px for your font size, go for it ??
And thank you for the comment about the theme. If things work out for you later, we would love to get a star rating and review for PureBlog….no obligation of course ??