Hi! Right now the sub menu font (menu under the main menu) is set to the content font. So whenever I adjust the size of the content font, the sub menu font adjusts too. How do I make it so the size of the sub menu font stays the same and does adjust with the content font?
Also, I want to know if I can also decrease the font of the author/time/date/etc. on the posts because they are also set to the font size of the content.
Thank you!
Comments
sub-menu font can be changed with custom css only:
#Top_bar .menu li ul li a { font-size: 16px !important; }You can see how the date, time and author are as big as the content font. I want to reduce the date, time, and author as well as the category and tags. Not just on this page though. I want it reduced for every post I do.
.single-post .post-meta .author-date {font-size: 14px;
}
.single-post .post-meta .category, .single-post .post-meta .mata-tags {
font-size: 12px;
}
THANK YOU!