Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1242066

    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

    #1242665

    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

    #1244635

    hello,

    hm, do you mean like that?

    @media only screen and (min-width: 991px) {
      *#header_main>.container {
      display: none;
    }
    }
    

    doesn’t work though :(

    #1244739

    Hi,

    Remove the asterisk from in front of #header_main

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.