How to add a background image to a static theme? | XM Community
Skip to main content

How to add a background image to a static theme?

  • December 5, 2022
  • 4 replies
  • 120 views

Forum|alt.badge.img+1

My Organization has a static theme in place for which I cannot change the background image.
I have a question container behind which I need the image added.
Is there a way I can do it?
Attaching Image for reference.
Survey theme.png

4 replies

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • December 5, 2022

faizan_inamdar
If you need it behind just questions you can include the following in Custom CSS and change URL of image needed.
.Skin #SkinContent {
background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Google_Images_2015_logo.svg/1200px-Google_Images_2015_logo.svg.png)

}


Forum|alt.badge.img+1

Deepak Thanks for your help Deepak :)
Your code helps with adding image on the question panel. I need to add it behind it. Any code for that?


Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • December 5, 2022

https://community.qualtrics.com/XMcommunity/discussion/comment/52848#Comment_52848Just remove the #SkinContent from it.
.Skin {
background: url(https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Google_Images_2015_logo.svg/1200px-Google_Images_2015_logo.svg.png)

}


Forum|alt.badge.img+1

You the Best Deepak :)