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

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

  • October 14, 2021
  • 1 reply
  • 310 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

Tom_1842
Level 8 ●●●●●●●●
Forum|alt.badge.img+28
  • Level 8 ●●●●●●●●
  • January 3, 2023

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;
}