Changing the questions container background color | XM Community
Skip to main content
Solved

Changing the questions container background color

  • November 3, 2020
  • 4 replies
  • 562 views

Forum|alt.badge.img

Hey,
Is it possible to change the questions container background color to other then white?
I want for where the red arrow is pointed to be of different color.
Thank you!
image.png

Best answer by rondev

Try this :
.Skin #SkinContent {
 background-color: #e6c994;
}

4 replies

rondev
Level 6 ●●●●●●
Forum|alt.badge.img+22
  • Level 6 ●●●●●●
  • November 3, 2020

Put the below CSS in the look and feel -> style -> CSS editor: change the hex code as required
.Skin .SkinInner {
  background-color: #e6c994;
}


Forum|alt.badge.img
  • Author
  • November 3, 2020

It changed a different area on the screen, I need to change the color of the white area (where the questions are presented)
image.png


rondev
Level 6 ●●●●●●
Forum|alt.badge.img+22
  • Level 6 ●●●●●●
  • Answer
  • November 3, 2020

Try this :
.Skin #SkinContent {
 background-color: #e6c994;
}


Forum|alt.badge.img
  • Author
  • November 3, 2020

Perfect! Thank you!