Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
bobiloco
Contributor III
Contributor III

Mashup iFrame displaying very small

I'm trying to implement the Big Screen Slideshow extension but after configuring the extension I'm getting a strange result. The sheet that is being displayed is extremely small and zoomed into the top left hand corner instead of taking up the screen.

GitHub - ardwork/Big_Screen_Slideshow: Create a carousel slideshow for your big screens from your Ql...

This mashup extension was created in the summertime and I'm wondering if the November 2017 update is causing the issue. Is there anything that needs to be changed with the new version of Qlik Sense or do you have any suggestions on why this might be happening? Otherwise the slideshow works great. Thanks!

SmallFrame.png

4 Replies
Anonymous
Not applicable

Hi Bernard,

Try to put this 

<body style="overflow: auto">

<iframe src='' width=600px; height=500px; style='border:none;'></iframe>

</body>

paulodantas
Creator
Creator

Hi Bernard,

did you fixed the issue?

If yes choose the correct answer or explain how you fixed.

Best regards.

ciphergod
Contributor III
Contributor III

Hi,

 

Currently also facing this issue, tried the method sandeep mentioned. Did not work, the whole object just get pushed down by the amount of pixel entered(in this case, pushed down by 600x600 px, the iframe remained small at the bottom of the screen.

 

Any new possible solution that can be tried?

ciphergod
Contributor III
Contributor III

just for reference, there was a comment on github :

 

I know it's an old issue but maybe it will help someone.

I had the same problem and I solved it when I added body and html height to ccs:

body {
padding-bottom: 30px;
height: 100%;
}
html {
height: 100%;

 

 

 

I tried the above and did not work too.