Hello, I have embedded an Adobe Spark page into a Wordpress page. It is full width, but is cropped much shorter than the full content. I've tried adding in code to make it 100% height, but it does not seem to be working. Anyone have a fix for this?
Give the <iframe> a height value in pixels. The browser default is 150px. Percentage height is not supported by <iframe>.
<p>An iframe with no borders:</p>
<iframe src="https://example.com" title="this is an embedded iframe page" width="100%" height="300" style="border:none;"> </iframe>