How can I create a certain space between columns in the matrix? | XM Community
Skip to main content
Solved

How can I create a certain space between columns in the matrix?

  • December 19, 2019
  • 2 replies
  • 34 views

Laureen
Hi, I have a problem with the matrix. ! I want there to be a certain space between the columns "trifft völlig zu" and "nicht beurteilbar". Alternatively, it would also be desirable that the entire(!) column of "nicht beurteilbar" is highlighted in a different color. Unfortunately, I can't find a cursor to pull the columns apart, as you can do in Word, for example. Furthermore, I am unfortunately not familiar with JavaScript, which is why I cannot create any code to solve the problem. I am very grateful for your help! Best regards Laureen 😀

Best answer by TomG

Changing the background color is better (no side effects): ``` Qualtrics.SurveyEngine.addOnload(function() { jQuery("#"+this.questionId+" .last").css("background-color", "#ddd"); }); ```

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • Answer
  • December 19, 2019
Changing the background color is better (no side effects): ``` Qualtrics.SurveyEngine.addOnload(function() { jQuery("#"+this.questionId+" .last").css("background-color", "#ddd"); }); ```

Laureen
  • Author
  • December 19, 2019
@TomG thank you very much! It worked! :)