• Resolved sybilrondeau

    (@sybilrondeau)


    Hi

    Is there a way to browse a gallery and at the end, it doesn’t come back to the first image, but goes to the next gallery ?

    Regards
    Sybil.

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

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

    (@elviiso)

    Hi @sybilrondeau

    Currently, FooGallery doesn’t have such a feature.

    I’m going to pass this request over to our development team to review and consider as a possible future feature. ​

    However, I can’t offer any guarantees about if and when it might happen as we already have an extensive list of new features in our development pipeline.

    Thanks.

    KInd regards,
    Elvis

    Thread Starter sybilrondeau

    (@sybilrondeau)

    Ok I understand thank you ! There is also two other little issues :
    – buttons on phone lightbox are tiny and too close, can I override that ?
    – When scrolling on phone lightbox with finger, it doesn’t work when there is a video. Is there a solution for that ?

    Regards.
    SYbil.

    Plugin Author bradvin

    (@bradvin)

    @steveush, pls can you investigate the above

    Thread Starter sybilrondeau

    (@sybilrondeau)

    Hi, any news on this issue ?

    Regards.

    Plugin Author steveush

    (@steveush)

    Hi @sybilrondeau,

    For the first issue where the buttons are too close, this is a small conflict with your theme. The width property on the buttons is being set to auto instead of the expected 100% which is the root cause of the issue however there are also some other default values being overridden. Adding the following CSS to your page should correct the conflict and let the defaults be used:

    button.fg-panel-button {
        display: inline-block;
        text-align: center;
        width: 100%;
        padding: 1px 6px;
        border-width: 0;
        cursor: pointer;
    }

    I also see some custom CSS in your linked page already targeting the fg-panel-button CSS class. I’m not exactly sure but it looks like you want to remove the borders from the buttons all together? You can do that by simply adding !important to the border-width value above.

    As for the second issue, the ability to swipe has not been implemented on videos. The problem is when you swipe on a video it actually happens inside the <iframe/> which is not controlled by us but rather by the site hosting the video. I haven’t thought of a clean solution which would not cause more issues than it solved.

    Thanks
    Steve

    Thread Starter sybilrondeau

    (@sybilrondeau)

    Hi

    Thank you very much, css code works fine on buttons.
    I understand the issue about the videos.

    Regards
    Sybil.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘switch to another gallery in lightbox’ is closed to new replies.