Is it possible to hide the background image that I put in using CSS from a single page?
Ideally I want the background image to be absent on page 1, but present on all subsequent pages.
Page 1 / 1
Yes, you can do it with JavaScript, but you would have to tell us what element you attached the background image to for us to tell you how to do it (i.e., show your CSS).
Happily :)
""#SurveyEngineBody {
background: url(https://bcbssc.az1.qualtrics.com/ControlPanel/Graphic.php?IM=IM_da6HUghgU5lJGbr);
background-repeat: no-repeat;
background-size: auto;
background-position: left top;
}""
""#SurveyEngineBody {
background: url(https://bcbssc.az1.qualtrics.com/ControlPanel/Graphic.php?IM=IM_da6HUghgU5lJGbr);
background-repeat: no-repeat;
background-size: auto;
background-position: left top;
}""
Try this:
```
Qualtrics.SurveyEngine.addOnload(function () {
jQuery("#SurveyEngineBody").css("background","none");
});
```
```
Qualtrics.SurveyEngine.addOnload(function () {
jQuery("#SurveyEngineBody").css("background","none");
});
```
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.