The theme that I am using in my survey places the Next and Previous buttons on the bottom of the page, but I want them at the top. I also don't want to change my theme. How can I do this?
Page 1 / 1
This is a custom CSS situation. Delve into the look and feel section and click on the Advanced tab where you can place code into the CSS Editor. Bribe your favorite IT person with Starbucks to write the code.
That is what I was afraid of...was hopeful that someone on here could help with that code.
This is going to be highly dependent on theme if you want to do it using CSS, but I think adding the following to the source of your header should do it for most themes, using a bit of JavaScript.
<script type="text/javascript">
Qualtrics.SurveyEngine.addOnReady(function()
{
$('Header').insert($('Buttons'));
});
</script>
<script type="text/javascript">
Qualtrics.SurveyEngine.addOnReady(function()
{
$('Header').insert($('Buttons'));
});
</script>
AnthonyR, your code worked perfectly for me. Thank you for sharing!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.