• Resolved ibrained

    (@ibrained)


    I’m using this with WordPress Filter Gallery Plugin with the Flatsome theme.
    The Flatsome Theme is a page maker.
    When I put in the shortcode it shifts all the rows, columns and sections – everything – below the shortcode to the left.
    So ALL the information that’s in a UX Block that makes the footer – is shifted to the left – and anything on that page that was centered or in any other position is pushed to the left.

    Fresh install.
    Disabled all other plugins – no joy.
    Same problem with every browser.

    Any idea how to fix that?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author FARAZFRANK

    (@farazfrank)

    Hi @ibrained,

    Here the conflict due to theme CSS: https://prnt.sc/WHIG7b3nK3XK

    Apply the following CSS to fix it:

    .container, .container-width, .full-width .ubermenu-nav, .row {
    max-width: 100%;
    }
    .gallery, .row {
    width: 100% !important;
    }
    .container .row:not(.row-collapse), .lightbox-content .row:not(.row-collapse), .row .gallery, .row .row:not(.row-collapse) {
    margin-left: unset;
    margin-right: unset;
    }

    .row {
    margin-right: unset;
    margin-left: unset;
    }

    Preview after fixing CSS: https://prnt.sc/UYIuIvq-vbNQ
    Thanks

    Thread Starter ibrained

    (@ibrained)

    @farazfrank Thank you, but it didn’t work – actually it created the problem on all the other pages.
    Once I put in the shortcode, the Footer shifts left, but only on that page.
    However, once I put in the CSS you gave me into Additional CSS, the footer shifted left on Every single page of the site.
    Once I took the CSS you gave me out, the footer on every other page went back to normal, but the footer on that page still shifts left (as does the gallery).

    I do need something that will fix the gallery grid so it doesn’t shift left, but it needs to not break the footer and not change any of the other pages too.

    Does that make sense?
    Thanks.

    Thread Starter ibrained

    (@ibrained)

    @farazfrank, Update! This fixed the gallery, without affecting the footers on the other pages:
    row> .col >.col-inner > .row{margin-left: auto!important; margin-right: auto!important;}

    But it didn’t fix the footer on the gallery page. Any thoughts?
    Thanks again.

    Plugin Author FARAZFRANK

    (@farazfrank)

    Add the following CSS:

    .row.row-small { 
    max-width: 100% !important;
    }
    .container, .container-width, .full-width .ubermenu-nav, .row {
    max-width: 100% !important;
    }
    .row {
    margin-right: 0px !important;
    margin-left: 0px !important;
    }

    After CSS fix preview will be: https://prnt.sc/0wpVDa0AOxFz
    Your theme has CSS that causes these conflicts.

    Thread Starter ibrained

    (@ibrained)

    @farazfrank Thank you

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Shifting content left’ is closed to new replies.