Answers for "remove horizontal scroll elementor"

4

remove horizontal scrollbar css

overflow-x: hidden;
Posted by: Guest on October-11-2020
0

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));
Posted by: Guest on July-22-2020

Code answers related to "remove horizontal scroll elementor"

Browse Popular Code Answers by Language