• Resolved kabbalisticvillage

    (@kabbalisticvillage)


    I am using Elementor page builder. Put in the short code and it works great on desktop but just shows blank on mobile. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author jgwhite33

    (@jgwhite33)

    Please post link to page.

    Thread Starter kabbalisticvillage

    (@kabbalisticvillage)

    Plugin Author jgwhite33

    (@jgwhite33)

    It looks like you have some CSS being applied to that widget container. It is increasing the right and left padding. If you can get rid of that or wrap it so it only applies on desktop. This is what it looks like currently…

    .elementor-47 .elementor-element.elementor-element-c2a93f3 > .elementor-widget-container {
    padding: 0px 100px 0px 100px;
    }

    You could change it to this…

    @media screen and (min-width: 768px) {
    .elementor-47 .elementor-element.elementor-element-c2a93f3 > .elementor-widget-container {
    padding: 0px 100px 0px 100px;
    }
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘works fine on desktop but doesn’t show on mobile’ is closed to new replies.