How to increase the container width in matrix question to avoid horizontal scrolling | XM Community
Solved

How to increase the container width in matrix question to avoid horizontal scrolling

  • 27 April 2021
  • 4 replies
  • 411 views

Userlevel 1
Badge +6

Hi ,
I have created a bipolar question with a 7 point scale. But the width of the container holding the question body does not increase automatically and the horizontal scroll bar seems to show up. I understand that to remove the scrollbar Javascript has to be used. But I am unable to identify the right class or code the script correctly. Was anyone able to solve this issue? Please let me know.

icon

Best answer by faris 28 April 2021, 18:05

View original

4 replies

Userlevel 2
Badge +3

Sumeshsdn Could you provide a Preview Link to your survey?

Userlevel 1
Badge +6

Here -
https://uspta.qualtrics.com/jfe/preview/SV_08ms48M6OSfxUpL?Q_CHL=preview&Q_SurveyVersionID=current

Userlevel 2
Badge +3

For your theme, this should do the trick:
@media (min-width: 980px) {
    .Skin .SkinInner {
        display: table;
        max-width: 1200px;
    }
}


@media (min-width: 770px) {
    .Skin #SkinContent {
        max-width: 95%;
        width: unset;
    }
}

Userlevel 1
Badge +6

https://www.qualtrics.com/community/discussion/comment/36945#Comment_36945Thank you very much farmaly ! It worked perfectly!!

Leave a Reply