remove the next and back buttons on qualtrics survey | XM Community
Skip to main content
Solved

remove the next and back buttons on qualtrics survey

  • September 19, 2024
  • 2 replies
  • 168 views

Forum|alt.badge.img+1

How can I completely remove the "Back" and "Next" buttons in Qualtrics? I have auto-advance set up for the first part of my survey, where images are displayed for 3 seconds each, and I’m concerned that the buttons are distracting. In the second half of the survey, participants make a selection, and the survey auto-advances after they answer, so the buttons remain unnecessary and distracting throughout.

I’ve added JavaScript to hide the buttons (Qualtrics.SurveyEngine.addOnload(function() {
this.hideNextButton();
this.hidePreviousButton();
});) but the buttons reappear just before advancing to the next question. How can I prevent this from happening?

Best answer by TomG

Use Custom CSS to hide the buttons. I think this will do it:

.Skin #Buttons { display:none; }

 

View original

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5938 replies
  • Answer
  • September 20, 2024

Use Custom CSS to hide the buttons. I think this will do it:

.Skin #Buttons { display:none; }

 


Forum|alt.badge.img+1
  • Author
  • 1 reply
  • September 20, 2024

thank you


Leave a Reply