Hide Mobile Nav Bar and avoid white space
-
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.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
@media (max-width: 1024px){
.sticky-toolbar-on {
padding-bottom: 0px;
}
}
Best Regards