Mobile Bottom Menu & Sidebar Filter Issues
-
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.
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