How to increase the font size of the row statements on a dropdown matrix table? | XM Community
Skip to main content
Solved

How to increase the font size of the row statements on a dropdown matrix table?

  • January 13, 2021
  • 1 reply
  • 71 views

Forum|alt.badge.img+6

I used this before and it only worked on the rows and not the columns of a matrix table.
.Skin .q-matrix .table-cell {
font-size: 16px!important;
}

.Skin .q-matrix .answered-indicator span {
font-size: 14px!important;
}

But it does not work on my matrix dropdown table.

Best answer by ahmedA

Add this line to your question JS:

this.getChoiceContainer().querySelectorAll("select").forEach(item => item.style.fontSize = "16px")

1 reply

Forum|alt.badge.img+22
  • Level 7 ●●●●●●●
  • Answer
  • January 13, 2021

Add this line to your question JS:

this.getChoiceContainer().querySelectorAll("select").forEach(item => item.style.fontSize = "16px")