Embedded form cutting too short

Hi,
I have embeeded a form into the website, however for some reason the page is cutting it, and the user needs to scroll to see the full form although the page has space.
Is there any chance you can help me figure this out?
Thanks!

This is the page:
https://learn.mobileodt.com/support/

Hi @alonmg,

Thank you for writing in, that is happening because your iframe has only 300px of height, to resolve that please add this to your Page > CSS area

iframe {
	height: 100vh !important;
}

You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial

Hope it helps,
Cheers!

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