• Resolved acedapig

    (@acedapig)


    The carousels outside of the one on my main page are not showing more than one image. The galleries are still able to be interacted with by clicking them and moving through the images, but it’s not very intuitive on mobile to know that it’s a gallery. I’ve attempted purging cache, and some of the other suggestions I’ve found via this forum, but no changes have worked.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support elviiso

    (@elviiso)

    Hi @acedapig

    Thanks for your patience as I investigated this issue.

    After looking into this, I realised that there was some CSS that was from your theme files which was forcing the carousel gallery inner container to be much smaller than intended. This resulted to the gallery displaying only one. Here’s the CSS I am referring to:

    .ast-page-builder-template .entry-content[ast-blocks-layout] > .inherit-container-width > *,.ast-page-builder-template .entry-content[ast-blocks-layout] > * > *, .entry-content[ast-blocks-layout] > .wp-block-cover .wp-block-cover__inner-container {
        max-width: var(--wp--custom--ast-content-width-size);
        margin-left: auto;
        margin-right: auto;
    }

    To counter the effects of this CSS, I have come up with the one below that you can add to the “Custom Stylesheet” textarea that is located at FooGallery -> Settings -> Custom JS & CSS

    .fg-carousel-inner {
        max-width: unset!important;
        margin-left: unset!important;
        margin-right: unset!important;
    }

    Don’t forget to hit on the “Save” button once added. This should resolve the issue. Thanks.

    Kind regards,
    Elvis.

    Thread Starter acedapig

    (@acedapig)

    @elviiso Thank you so much for investigating this and getting back to me. It appears mobile is showing one image still. Is that to be expected from the carousel?

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

The topic ‘Carousel Not Displaying Images’ is closed to new replies.