Submenu size

How can I make the submenu in the nav smaller. The spacing between the items is too much.

Regards

Sherry

Hey Sherry,

You’ll need custom CSS to accomplish that. You can use the inspector to grab the appropriate class and then write your custom CSS and insert either in your child theme or if using our theme, in the code section of the customizer. If you need assistance with that CSS, please send along a site URL so we can take a look and let us know specifically what you need done there. Thanks!

Best,
Billy

Thanks for the reply. I am using BB theme. Can you just give me the class and code to adjust the sub menu size. Once I have that, I will play around with it and fix it. Thanks

Hey Sherry,

Try adjusting the styling of the CSS snippet below.

@media (min-width: 768px) {
  .fl-page-nav ul.sub-menu li a {
    margin: 0 10px;
    padding: 10px 15px;
  }
}

Ben

Works. Awesome. Thanks

Enjoy BB! :slight_smile:

Ben