I am trying to have the logo image disappear when viewing on a smaller device. I input the following CSS Code
@media screen and (max-width: 1000px) {
.fl-logo-img {
display: none;
}
After doing this the Hamburger icon will not show up on my phone, the logo does not show which is good but there is no way to navigate the site on my phone. If I choose the menu button instead of the icon that seems to work fine. Not sure why only the hamburger icon doesn’t work though.
Any help would be great!
Thank You
Rick