hi!
i wanted to create a minimal horizontal menu without a logo for the desktop, so i used:
*#header_main>.container {
display: none;
}
to hide the header. on the desktup the result looks fine, but on mobile the hamburger menu button gets hidden… is there a way to display the hamburger menu button on top of the layerslider? (on mobile)
or is there a better way to achieve the current look on desktop without hiding the header?
thank you!
chris
Hi Chris,
Please try adding your CSS into a media query to see if that helps:
@media only screen and (min-width: 991px) {
Your CSS goes here
}
Best regards,
Rikard
hello,
hm, do you mean like that?
@media only screen and (min-width: 991px) {
*#header_main>.container {
display: none;
}
}
doesn’t work though :(
Hi,
Remove the asterisk from in front of #header_main
Best regards,
Jordan Shannon