Script: Center NEXT Page Button on a Specific Screen
This article will help you center the NEXT Page button on a specific screen
Background
You may want to center the NEXT Page button on the first screen of a survey. This article will show you how to do so.
Centering the NEXT Page button
- Access the Survey Authoring Tool (SAT) and open any question card on the specific page you want to center the Next Page button on.
- Click on the HTML Editor icon tied to the question card.
- Access the Source Code Editor (</>)
- See Article: Source Code Editor
- While in the Source Code Editor, add the following code
<style> /* CENTER NEXT PAGE BUTTON ON SCREEN */ .cm-survey-navigation { text-align: center !important; } .cm-progress-bar { display: none !important; } .cm-navigation-buttons { float: none !important; } </style>
- You are done.
NOTE: You can add this same code (minus the <script> tags) to your theme to do this on every page, if needed.