Hi Reneeann….thank you for your comment about my theme.
Regarding the font size for the menu, you can definitely do that with some custom CSS that you can add to the “Additional CSS” tab in the customizer. This is the theme’s default styling:
.primary-navigation {
font-family: "Playfair Display", Georgia, serif;
font-size: 1.125rem;
font-weight: 400;
font-style: italic;
}
So for you, the custom css would be:
.primary-navigation {
font-size: 1.125rem;
}
I use rem units for size, but you can use this PX to EM conveting tool to find out what a px (pixel) size is in rem (em).
For the submenu font size:
@media (min-width: 992px) {
.primary-navigation li li > a {
font-size: 0.938rem;
}
}