I am adding a Matrix Table, of bipolar type, in Qualtrics.
I have 3 statements on the left-hand side of the Table, and again 3 statements on the right-hand side, with 2 scale points in the middle.
I would like to adjust the width of the left-hand column and of the right-hand column of the Matrix Table.
What is the code to use?
I have found similar codes in CSS for other types of questions, such as the one below, but nothing for a bipolar matrix table.
<style>
.Skin .SBS .Short {
width:50px;
}
</style>
What would be the code to adjust width in bipolar matrix table?
Thank you!
Try the following. Strangely, AnswerRight is the left side (right aligned) and AnswerLeft is the right side (left aligned). The default for both is 50%
.Skin .Matrix .Bipolar th.AnswerRight {width:50%}
.Skin .Matrix .Bipolar th.AnswerLeft {width:50%}