It is possible to hide the Previous and Next navigation buttons in quizzes. This option is only available when the "Automatically move to next question upon answering" setting is enabled, which you can find under Quiz > Advanced.
In that case, the progression between questions happens automatically as soon as the user selects an answer, making the manual navigation buttons unnecessary.
For other situations where you need to hide these buttons, it is also possible to do so using custom CSS, available in campaigns created under white-label.
Add the following rules in your campaign's CSS field, depending on which button you want to hide:
To hide the Previous button:
.actions ul li:first-child {
display: none !important;
}To hide the Next button:
.actions ul li:nth-child(2) {
display: none !important;
}
Comments
0 comments
Please sign in to leave a comment.