How can I set constant width of pages? | XM Community
Skip to main content
Question

How can I set constant width of pages?

  • June 13, 2019
  • 3 replies
  • 74 views

Forum|alt.badge.img+1
I have about 7-8 pages in my survey with mix of matrix and text entry questions. I tried to increase the width of pages with only matrix type question using the code below. .Skin .QuestionOuter.Matrix{min-width:1200px} But, I am unable to set the same width of page with only text questions. Any help would be greatly appreciated.

3 replies

fleb
Level 3 ●●●
Forum|alt.badge.img+6
  • Level 3 ●●●
  • June 14, 2019
Hi @Rahul, I'm not sure what do you mean by the word "page" here. However, you could try this: `#Questions{min-width:1200px;} ` in case you want questions of the same width for all your questions. The structure of the Qualtrics page looks approximately like this: ! It should be possible to custom width for any of these elements. (There is at least one mistake in the image SkinIner is a class and not ID) If this won't help you, it might be better to provide screenshots for better understanding of your problem.

Forum|alt.badge.img+1
  • Author
  • June 17, 2019
this worked, thanks1 however my survey is no longer mobile friendly. there is a vertical scrollbar that is added.

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • June 17, 2019
> @Rahul said: > this worked, thanks1 > however my survey is no longer mobile friendly. there is a vertical scrollbar that is added. Modify the CSS @fleb provide to this: ``` @media only screen and (min-width: 1200px) { #Questions{min-width:1200px;} } ```