Rubens theme burger issue

E

Ekaterina Sayapina

Guest
Can someone please to tell me how to remove burger menu from my rubens theme?
Hello,

The easiest way to hide the burger icon on mobile is to paste this piece of code to your Customization => Head => CSS style:

@media (max-width: 767px) {
.fixed_burger {
display: none;
}
}
 
Top