Removing Header Logo or Text

I am trying to remove the logo or text from the header bar as I want just the menu choices. I have tried a couple of different CSS Codes that remove the logo but both yield the exact same problem. After inserting the code, the hamburger icon is no longer visible on a small device. If I choose the menu button it works but not the hamburger icon. Any help would be appreciated. Below are the two different codes I tried…

.fl-logo-img {
display: none;
}

.fl-page-header-logo {
display:none;
}

Thank You
Rick

Hey Rick,

Do you mind sharing the URL of the site in question so we can take a look? You can use the private reply option below if you need to. :slight_smile:

Ben

[Content Hidden]

[Content Hidden]

Hey Rick,

Adding the CSS snippet below should fix you right up! :slight_smile:

@media (max-width: 767px) {
  .fl-page-nav-toggle-icon .fl-page-nav .navbar-toggle {
    z-index: 100;
  }
}

Ben

Worked Perfect…Thanks Ben!

Rick

No worries at all! Enjoy BB! :slight_smile:

Ben