Hamburger menu

Hello guys!

I am currently going through my Shopify website (www.veloir.co.uk - nemael).

My hamburger menu has turned into a ‘Search’ button, is there any way you guys know how I can change it back to the hamburger menu?

I don’t know how I made it change to a ‘Search’ button, probably my not so great coding skills lol

Thank you in advance.

Hello @JAKUBPLU

Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.

@media screen and (min-width: 990px) {
.header__inline-menu {
display: none !important;
}
header-drawer {
display: block !important;
}
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

Hi, I have added this into theme.liquid as I do not have theme.css and it did not work :confused:

If your theme don’t have theme.css file then you need to paste it in base.css file.

Go to end of base.css file and paste the code that provided by @GTLOfficial

Thanks