[Resolved] Mobile site with horizontal scroll

Home Forums Support [Resolved] Mobile site with horizontal scroll

Home Forums Support Mobile site with horizontal scroll

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1422115
    Nadine

    Hi,
    my mobile sites have a horizontal scroll. In addition, the Container / Header / Footer don’t fill the page – there is just like an empty backround to the site. On some pages, it is only a small area, but quite a large “empty” space on the right site of the home page.
    I am using GP premium with elementor.
    I have disabled the “stretch to full with” on all sections on the page. On the general page settings I set the Template option to “Elementor full width” (already tried “standard” but with same results). For page builder container I set it to “full width”.

    Any ideas what else I could check?

    Thanks!

    #1422162
    Leo
    Staff
    Customer Support

    Hi there,

    Does the issue exist if you create a page without using Elementor?

    #1422624
    Nadine

    I haven’t tried that. But it is not with all of the sites I created with Elementor

    #1422645
    Nadine

    Problem solved. It was a setting in the elementor. In case someone has the same issue. I found it with

    (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));

    in the console.

    Thank you for your support!

    #1423081
    Leo
    Staff
    Customer Support

    Glad to hear 🙂

    Thanks for sharing!

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.