Home Forums WoodMart support forum Mobile Bottom Menu & Sidebar Filter Issues

Mobile Bottom Menu & Sidebar Filter Issues

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

    reseler.cl
    Participant

    Hi Woodmart team,
    1. The Mobile bottom navbar menu on mobile is too close to the iOS navigation bar. How can we add extra padding to fix this?

    Thanks!

    Attachments:
    You must be logged in to view attached files.
    #635190

    Artem Temos
    Keymaster

    Hello,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to customize this

    .wd-toolbar {
        height: calc(55px + env(safe-area-inset-bottom));
    		padding-bottom: env(safe-area-inset-bottom);
    }
    
    @media (max-width: 1024px) {
        .sticky-toolbar-on {
            padding-bottom: calc(55px + env(safe-area-inset-bottom));
        }
    	
    	  .sticky-toolbar-on .scrollToTop {
            bottom: calc(67px + env(safe-area-inset-bottom));
        }
    }

    Kind Regards

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