I want to hide the brand logo in the header of the website when the superfly menu is displayed after clicking the hamburger button.
So I have to activate this CSS when the Superfly menu is open:
.x-brand img {
display: none;
}
Also: when I close the menu, the logo must of course be visible again.
Is that possible and how do I do that in CSS?