How to widen star slider? | XM Community
Skip to main content

Hello I am trying to widen my star slider to have the same width as the question body.
snip star.PNGI have used these codes:
jQuery("#" + this.questionId + " .QuestionBody").width(600);
jQuery("#" + this.questionId + " .statement-container").css("padding-top",6);
but no changes were made.
Any recommendations?

A star slider is a table. Change the width of the first cell in the first column:
jQuery("#"+this.questionId+" th:first").width("50%");


Thank you!


Leave a Reply