Full size image/ embed presentation in survey | XM Community
Solved

Full size image/ embed presentation in survey

  • 1 June 2023
  • 8 replies
  • 394 views

Userlevel 1
Badge +2

Hi, 

I am hoping to embed a presentation within my Qualtrics survey and from other entries it seems that the best way to do so is insert each slide as an image. The problem I came across is that when the slides are presented they are really small and don’t stretch across the whole screen. The survey is going to be on PC monitors so I am not concerned about usability on phones. I am not very familiar with HTML and was hoping someone may have a solution or can provide some advice on how to get the image to fill the screen! 

Thanks in advance!

I used: 

<img src="my_image.jpg" style="width:100%;">

But the size of the image still seems to be limited by qualtrics. 

icon

Best answer by Deepak 1 June 2023, 16:18

View original

8 replies

Userlevel 7
Badge +35

@susiepeter

You can convert your PPT to PDF add it to Qualtrics Library use that link and embed it as iFrame in the HTML view ofyour question,

<iframe width="100%" height="100%" src="PDF Link" frameborder="0" allowfullscreen></iframe>

Hope it helps!

Userlevel 1
Badge +2

@Deepak Thank you! This is really helpful and enabled me to size up the presentation to the whole screen. Is there a way to get rid of the download and printing boarder surrounding the iframe on just have the image? Thanks in advance.

Userlevel 7
Badge +35

@Deepak Thank you! This is really helpful and enabled me to size up the presentation to the whole screen. Is there a way to get rid of the download and printing boarder surrounding the iframe on just have the image? Thanks in advance.

@susiepeter 

You can use #toolbar=0 it will remove the entire toolbar

<iframe src="PDF Link + #toolbar=0" height="100%" width="100%"></iframe>

Hope it helps!

Userlevel 1
Badge +2

@Deepak Thank you so much! This was exactly what I was looking for - have a lovely day!

Userlevel 7
Badge +35

Great!, Kindly mark it solved if it resolved your issue.

Badge

This was super helpful! I personally needed to make the viewable area of the PDF longer (was very short on my end), so I used the same code and just changed height="100%" to height="800px” (or adjust pixel number as needed). Sharing within this thread in case it comes in handy for others

Badge +1

Hello  @Deepak  @drgonzoMSU @susiepeter  - 

I also tried this but I still do not see the pdf stretched across screen 

<div id="pdfContainer"><iframe height="100%" width="100%" id="pdfContent" src="https://fiu.qualtrics.com/CP/File.php?F=F_ggfg" frameborder="0" allowfullscreen></iframe></div>

Userlevel 7
Badge +35

@Shivam_marketingResearcher 

Add your heights in px as per your requirement.

Leave a Reply