Remove padding to right of questions / set all to 100% width | XM Community
Skip to main content

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?

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