Iframe in text element

Hello,

I’m using an iframe in text element at http://bvapt.org/yearbook

I’m wondering how I can get that text box to expand on the height. So it shows the full page.

We are using version 6.5.5.

I have found inline styling in your iframe element > style="; width:100%;height:100%;

Change the “height:100%” to “height: 400px” or anything you want.

For full screen height Use:
style="; width:100%;height:100%; > style="width:100%;height:100vh;

For 50% screen size Use:
style="; width:100%;height:100%; > style="width:100%;height:50vh;

For a fixed height Use:
style=";width:100%;height:100%; > style="width:100%;height:400px;

Hope it solves your problem.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.