Home Forums WoodMart support forum Hide Mobile Nav Bar and avoid white space

Hide Mobile Nav Bar and avoid white space

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #250566

    viapampa
    Participant

    Hi, I want to hide the mobile nav bar on a specific page using Elementor. I found the following code. It is hidden, but now the 40px white space is still showing. I have triend to add a margin -40px on the elementor section but it doesn’t work. How can I also remove that white space from that page?

    The footer and the header are also hidden, so not showing anything, just the elementor content.

    body .woodmart-toolbar {
    display:none;
    }

    Regards.

    #250661

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    @media (max-width: 1024px){
    .sticky-toolbar-on {
       padding-bottom: 0px;
    }
    }

    Best Regards

Viewing 2 posts - 1 through 2 (of 2 total)