• The plugin works great when the inserted page/content is small. (= Your use case to display simple information.)

    But I have another use case: display larger pages with more information. It works too, but the display of the whole page is quite big and is disturbing for the rest of the actual page. So I need a box (iframe) with limited high and a scrollbar within, to show the relevant information on behalf of user selection.

    I know I can use a regular iframe, but I like your plugin for its comfortable options in Gutenberg editor. So I want to ask you if such additional options (adjustable high + vertical scrollbars within) are on your list for future versions – or could be added to this list?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Paul Ryan

    (@figureone)

    For now you should be able to do this with some CSS by using max-height and overflow-y: scroll. For example, to limit the height to 200 pixels wherever page ID 123 is inserted:

    .insert-page-123 {
    max-height: 200px;
    overflow-y: scroll;
    }

    You can target all inserted pages with the .insert-page class, if desired.

    Thread Starter burnuser

    (@burnuser)

    Thank You for the info!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.