How to increase the font size in ALL matrix questions (rows and columns) both on desktop & mobiles? | XM Community
Skip to main content
Solved

How to increase the font size in ALL matrix questions (rows and columns) both on desktop & mobiles?

  • May 28, 2020
  • 1 reply
  • 596 views

AlexPanic
Level 1 ●

Hi,
I have tried this but it does not work neither on desktop nor on phones...
.Skin .Matrix table th{   font-size: 20px; }
I have also tried

.Skin .Matrix .table-cell{font-size:22px!important;}

.Skin .Matrix table th{font-size: 22px;}

No difference :(

Please note that I am quite a newbie and I am entering all these in the Look & feel Style section together with a bunch of other customisations.

Help!
A.

Best answer by AlexPanic

In case anyone has the same issue, this CSS sorted it:

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

.Skin .q-matrix .table-cell {
font-size: 18px!important;
}

1 reply

AlexPanic
Level 1 ●
  • Author
  • Level 1 ●
  • Answer
  • May 29, 2020

In case anyone has the same issue, this CSS sorted it:

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

.Skin .q-matrix .table-cell {
font-size: 18px!important;
}