Hello, I am trying to disable the next arrow for every question on my survey, except for the first prompt which is consent to research. I followed the directions in a community post and did Look and Feel > Advanced > Custom CSS and then entered code:
PreviousButton,
PreviousButton,
Page 1 / 1
Hello @Shane78 ,
Paste the below code in the "Add custom Css" option
#PreviousButton, #NextButton{
display: none;
}
To enable the Next Button on first question, Paste the below code in the js(OnReady) of the First question
`jQuery("#NextButton").show();`
Paste the below code in the "Add custom Css" option
#PreviousButton, #NextButton{
display: none;
}
To enable the Next Button on first question, Paste the below code in the js(OnReady) of the First question
`jQuery("#NextButton").show();`
@Shashi, this worked perfectly, thank you so much!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.