Solved
How to change the hover color of a matrix table
Hello,
Could anyone please guide me on how to change the hover color of a matrix table question?
I have managed to change the hover color of multiple choice, single answer questions using the CSS code below:
.Skin label.SingleAnswer:hover, .Skin label.SingleAnswer:hover {
background-color: rgb(210, 210, 210);
border-style: solid;
border-color: black;
border-width: 1px;
}
I wish to do something similar for matrix table questions involving Likert scales.
Thank you!
Best answer by Anonymous
Hello @tkotze ,
Use the below code:
table{
border-collapse:collapse !important;
}
.Skin .ChoiceRow:hover {
background-color: rgb(210, 210, 210);
border-style: solid;
border-color: black;
border-width: 1px;
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

Kind regards,
Theuns