Hey @salilou,
Though we’ll provide a potential solution or workaround, please note that we do not guarantee this will work nor we’ll we provide further enhancements.
Try adding the following code in the Global CSS.
.ps__rail-y {
display: none !important;
}
Also add this in the Global JS.
// Setup and fix menu buttons inside an off canvas
document.addEventListener("load", function() {
// Get menu items
var items = document.querySelectorAll(".x-anchor-menu-item");
for (var i = 0; i < items.length; ++i) {
var item = items[i];
//console.log(item); //Make sure we're only adding it where needed
// Touch event I don't think this issue happens
item.addEventListener("touchstart", function(e) {
if (!item.href) {
return;
}
location.href = item.href;
}, true);
};
});