Solved
How can I increase the width of my survey for desktop without affecting the optimized mobile view?
Hi, I'm trying to increase the width of my survey. I'm using this:
.Skin .SkinInner {min-width: 1000px!important;}
However, this messes up the optimization for mobile view. How can I put in a separate CSS code just for the desktop view?
Best answer by Kennedy_I
Try adding the below syntax:
@media screen and (min-width: 800px) {
}
This will keep the width of your mobile resolution regardless if you adjust the desktop width.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

!