Making viewing window bigger | XM Community
Skip to main content

Hello,
How can I make the window that presents the survey bigger or wider? I am not sure what the window or box is called. It's the white box in the middle.
It may appear ok in this picture, but when I present a lot of info (e.g., a MCQ matrix), it looks weird. The actual space that the matric covers is way smaller compared to the blank space.
Thanks in advance for your help.
Best, ZR
Screen Shot 2021-03-03 at 12.52.56 PM.png

Add these to your custom CSS. Read here how to do it.
.Skin .SkinInner{
max-width:100vw;
width:70vw;
}

vw 
stands for viewport width. So you can change the value of
width 
to anything that suits you. Keep
max-width 
to
100vw
, to ensure that Qualtrics' internal settings do not override your width specification.


It worked perfectly. Thank you so very much.


Leave a Reply