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

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

  • 19 December 2019
  • 2 replies
  • 15 views

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 😀
icon

Best answer by TomG 19 December 2019, 15:53

View original

2 replies

Userlevel 7
Badge +27
Changing the background color is better (no side effects):
```
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" .last").css("background-color", "#ddd");
});
```
@TomG thank you very much! It worked! 🙂

Leave a Reply