How can I set constant width of pages? | XM Community
Question

How can I set constant width of pages?

  • 13 June 2019
  • 3 replies
  • 53 views

Userlevel 2
Badge +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

Userlevel 5
Badge +6
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.
Userlevel 2
Badge +1
this worked, thanks1
however my survey is no longer mobile friendly. there is a vertical scrollbar that is added.
Userlevel 7
Badge +27
> @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;}
}
```

Leave a Reply