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

How to widen star slider?

  • August 17, 2022
  • 2 replies
  • 126 views

Forum|alt.badge.img+2

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?

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • August 17, 2022

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


Forum|alt.badge.img+2
  • Author
  • August 23, 2022

Thank you!