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.
Solved
How to increase the container width in matrix question to avoid horizontal scrolling
Best answer by faris
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;
}
}
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.