I’m embedding a simple iframe on my website using an HTML widget.
The problem is that the rest of the page, below the iframe is not visible. It seems like the iframe code breaks the rest of the page. Can anyone offer a solution?
I analyzed the code of the embeded page and there is a lot going on, a lot of scripts after the button. Is all that really needed? If yes, I’ll have to pass that to someone else like @bart who’s much more skilled in JS that I am. The Chrome console can probably tell us what’s going on but I don’t know where to look.
Yes, it’s very strange. The embedded page is complex, but the widget itself is simple and just acting as a link. I’m not sure why it would be breaking the page. @bart If you could take a peak that would be greatly appreciated!
Ok @MikeD, hopefully getting back to you with an answer. What I did was closing the iframe tag. If you look into your embed you can see you only have
<iframe src="...">
but there is no closing tag. Please add that there like that:
<iframe src="..."></iframe>
Make sure to republish website (unpublish and publish again) and CMD+SHIFT+R(efresh) your website then. If that won’t work, could you please try duplicating the website?