I have an unusual situation where I need to control the Look & Feel of different brands in a single survey. We are locked into the “Simple Layout” and I have most of the JS working with the exception of a few selectors giving me trouble.
The various brands are getting passed in by a web query so it’s all controlled by the JS in the Header.
Here’s one example - Matrix Column Bottom Border Color
jQuery(".matrix .matrix-table .matrix-scale-points-item.hover").css({
"border-bottom-color" : "#5e5e5e"
});
Unfortunately, I cannot seem to figure out how to update the color for the mouseover/hover/focused effect. Any ideas?