Hello,
We have a question about the grid question checkbox. When we hover over to a checkbox in the grid question, a gray highlight will appear. I use the code below to remove the gray highlight.
<style type="text/css">
.grid td.highlight {
background: transparent !important;
}
</style>
But the gray highlight turned to light green highlight after I applied the code above. Then I wrote the code below to try to remove the light green highlight. However, it didn't work.
<style type="text/css">
.clickable.highlight {
background-color: transparent !important;
}
</style>
Can anyone please share any suggestions?
Many thanks!