I’ve just finished most of what I want to customize on Minimatica and I’m loving what the theme can do so far.
I want to make one quick change though, but I’m not sure where to edit the CSS (or if I’m going about this the wrong way).
My site is shutterbee.org
Here’s all I want:
One set of font settings (size, color, etc) for the navigation menu links (on my site: Home, Portfolio, About, Contact)
AND a different set of font settings for the submenu (for example, under Portfolio: Adult, Children & Teen, Engagement, Pets)
Can someone help me out? This seems like it should be something quick and easy, but CSS is not my native tongue.
Submenus have the class sub-menu
so you can add something like this in style.css:
.sub-menu {
font-family: "My Font", sans-serif;
}