Increasing width of matrix statement - simple layout | XM Community
Skip to main content
Solved

Increasing width of matrix statement - simple layout

  • September 12, 2024
  • 2 replies
  • 133 views

Forum|alt.badge.img+1

Hi, I am trying to increase the width of the statements in a matrix - the survey is in the Simple layout. For some reason, manually dragging the statement width isn’t working in this layout (but is working in different layouts) and the code I’ve tried hasn’t worked either. Is there a way to increase the width in the Simple layout? Thank you!

 

 

Best answer by rondev

Use below css in look and feel → Style → Custom CSS (edit) option:

.matrix .matrix-table .matrix-content{
grid-template-columns:minmax(6.25rem, 1fr) 1fr;
}

 

View original

2 replies

rondev
Level 6 ●●●●●●
Forum|alt.badge.img+22
  • Level 6 ●●●●●●
  • 1449 replies
  • Answer
  • September 14, 2024

Use below css in look and feel → Style → Custom CSS (edit) option:

.matrix .matrix-table .matrix-content{
grid-template-columns:minmax(6.25rem, 1fr) 1fr;
}

 


Forum|alt.badge.img+1
  • Author
  • 2 replies
  • September 16, 2024

@rondev This worked perfectly, thank you so much!


Leave a Reply