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

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.

Add this line to your question JS:

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


Leave a Reply