Topic: Maribo theme - nav and sub nav [SOLVED]

Working with Maribo theme. Is there anyway to have the nav and sub nav be different font size and weight? I have made adjustments to the gallery index font size and weight, but can't seem to find the right location to make changes for my custom css. I would like the nav to be bold and the sub nav be normal or the sub nav a smaller font size.
Thanks in advance!

Re: Maribo theme - nav and sub nav [SOLVED]

Try adding something like the following to your 'showkase/_themes/maribo/css/custom.css' file:

nav#nav .nav:not(.subnav) a {
    font-weight: bold;
}

nav#nav .subnav a {
    font-size: 12px;
}

Re: Maribo theme - nav and sub nav [SOLVED]

Thank You!
That worked perfectly!

Re: Maribo theme - nav and sub nav [SOLVED]

You're welcome!
I'm glad it worked. Thank you for letting me know.