Positioning the choice buttons to the right of the text | XM Community
Question

Positioning the choice buttons to the right of the text

  • 23 April 2024
  • 1 reply
  • 9 views

Badge

Hi,

 

I would like to position the choice buttons to the right of the text . how can I do that? Any help would be appreciated..

Thanks,

Gozde


1 reply

Userlevel 1
Badge +6

Hi @Gozut 

mabey this will help you

 

  1. Access the question editor: Log in to your Qualtrics account and navigate to the survey you're working on. Click on the question you want to edit.

  2. Edit the question: Once you're in the question editor, you'll see options to customize the question text, choices, and layout.

  3. Change the layout: Look for an option to change the layout or alignment of the choices. This option might be labeled differently depending on the question type you're using (e.g., multiple choice, dropdown, matrix).

  4. Select the desired layout: Choose the layout option that aligns the choice buttons to the right of the text. This could be a setting like "side by side," "horizontal," or "aligned right."

  5. Preview and test: After making the changes, it's a good idea to preview your survey to ensure that the layout looks the way you want it to. You can also test the survey to make sure that the choice buttons function correctly.

  6. Save your changes: Once you're satisfied with the layout, save your changes to update the survey.

 

if those step are not it you can try it with this script

 

Qualtrics.SurveyEngine.addOnload(function() {

    // Get all the choice elements in the question

    var choices = this.questionContainer.select('.Choice');

    // Iterate through each choice element

    choices.each(function(choice) {

        // Move the choice element to the right of the text element

        var textElement = choice.previous('.QuestionText');

        if (textElement) {

            textElement.insert({ after: choice });

        }

    });

});

 




 

Leave a Reply