hi @aaron3,
Do you mean you don’t want to show the burger menu button in the navigation bar? Burger Menu button will help to show you the navigation menu lists through dropdown way.
If you hide that Burger Menu Button then your Navigation menu list wont be appear in any way out and you can’t be able to access to the pages of your sites easily.
In Case if you want to hide the Burger Menu Button from navigation bar then Add below custom CSS code in Appearance > Customize > Additional CSS.
@media (max-width: 991px) {
.navbar-toggler {
display: none;
}
.navigation-bar-top > .container,
.search-toggle {
min-height: 46px;
}
}