• Resolved tbuza

    (@tbuza)


    Hi,

    I use fancybox to open page content in an iframe, but the issue is when the content is larger than screen size (viewport) there is no possibility to scroll inside fancybox, top and bottom content is cut off.

    Is there a way to active mouse scroll or scrollbars inside fancybox?

    Is this available in pro edition? No problem, but I don’t want to spend money if this is not possible.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Scrolling inside the iframe should be possible. I think the theme style rule

    body::-webkit-scrollbar {
        display: none;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    is interfering here.

    (from the oxygen framework)

    Thread Starter tbuza

    (@tbuza)

    Thank you for your answer,

    the solution was much simpler, at some point I put the inside content height to 100vh and that disabled possibility of scrolling.

    Now, working like a charm ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Content inside iframe scrollable’ is closed to new replies.