Re Questions | XM Community
Skip to main content
Question

Re Questions

  • November 16, 2021
  • 1 reply
  • 25 views

How can I (if any), flip/ change the "Answer type" sides from the left side to the right, and how to flip the "Matrix type" sides from the right side to the left, in the "Matrix table" question?
Or Right or Align the Text in a Dropdown List?

1 reply

Tom_1842
Level 8 ●●●●●●●●
Forum|alt.badge.img+28
  • Level 8 ●●●●●●●●
  • May 3, 2022

Hi there, in case you are still looking for help with this, I think this can be accomplished in 2 ways:
1) When using Translations, some languages, such as Arabic and Hebrew, will mirror the questions so they display right to left. Below are screen shots of the same questions in English and then displaying its Hebrew translation:
Translations_RTL.png
2) Add the below CSS to your Survey's Look & Feel. The first bit will mirror all the survey content, and the second bit will mirror the buttons:
#SurveyEngineBody {
 direction:rtl !important;
}

#Buttons {
-webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}