Remove padding to right of questions / set all to 100% width | XM Community
Question

Remove padding to right of questions / set all to 100% width

  • 14 October 2021
  • 1 reply
  • 173 views

I have already added the following code to the custom CSS of my survey in an attempt to get the survey to occupy 100% width of the iframe it's in.
#SkinContent{ width:100% !important; } 
.Skin .SkinInner {width:100% !important;}
.Skin .QuestionOuter.Matrix{width: 100% !important;}
Currently, it looks like this
Screenshot 2021-10-14 at 10.56.39.jpgHow can I make it so that the text and free-text response reach all the way to the edge of the iframe?
Is there some padding there I can remove? If not, what am I missing?


1 reply

Userlevel 7
Badge +27

Hi there, if you still need, you should be able to use the full width of the screen by adding the below CSS to the Style section of the survey's Look & Feel:
.Skin .SkinInner {
width: 100% !important;
max-width: 100% !important;
}

Leave a Reply