Forum Discussion
mraka9
4 years agoHelper III
Problem displaying app on Weebly
Greeting,
I posted the app on a weebly website.
After I spread the app full screen and minimize the display, weebly the background does not display properly (menu, etc.). I was told to come here to solve this problem.
Thanks in advance!
Greetings,
8 Replies
- JaromBIDEVatDKHelper II
How are you embedding the app? Iframe, webpart, etc?
- mraka9Helper III
Embed via html code. Everything is fine until the full screen of the application is reduced.
- JaromBIDEVatDKHelper II
Do you have a power BI ratio set or did you customize the page size?
- mraka9Helper III
Unfortunately I don't know how to do it.
I embedded the public code in the form width="600" height="373.5"- JaromBIDEVatDKHelper II
Do you have access to the HTML for the web page? You could add this to the header and iframe:
<script> function resizeIframe(obj) { obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px'; }</script><iframe src="..." frameborder="0" scrolling="no" onload="resizeIframe(this)" />