elementor remove horizontal scroll
// Remove horizontal scroll on mobile devices
html,body {
overflow-x: hidden
}
elementor remove horizontal scroll
// Remove horizontal scroll on mobile devices
html,body {
overflow-x: hidden
}
how to remove horizontal scroll on elementor
(function (debug) {
var w = debug.documentElement.offsetWidth,
t = debug.createTreeWalker(debug.body, NodeFilter.SHOW_ELEMENT),
b;
while (t.nextNode()) {
b = t.currentNode.getBoundingClientRect();
if (b.right > w || b.left < 0) {
t.currentNode.style.setProperty('outline', '1px dotted red', 'important');
console.log(t.currentNode);
}
};
}(document));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us