Placement of slider labels | XM Community
Skip to main content
Solved

Placement of slider labels


Forum|alt.badge.img+2

I received CSS from tech support but it seems custom to another need, so I need help customizing to mine. I am also having a couple other issues noted below. 

Attached image of the slider itself. 2 pieces of text should be anchored at opposite ends of the slider.  

I also would prefer NOT to have a statement text at all.  Only the slider itself with the text anchors.  Is that possible? 

3rd, it is forcing #s so I made the #s 0 - 100.  I would rather the #s not display at all and people just slide to the ‘mix’ visually between the 2 text anchors if that makes sense. 

Can anyone help with all these things?

Best answer by TomG

Increase the left/right padding form 40px to something more.

Add a margin to the bottom of the labels:

.QuestionBody.q-slider ul.labels { margin-bottom:10px; }

 

 

View original

4 replies

Forum|alt.badge.img+2
  • Author
  • Level 1 ●
  • 5 replies
  • March 31, 2025

I should also add the preview visual of this question 

In this case it isn’t warped by the html text instead of bolding so it is clearer what I am trying to do:

  1. move the ‘digital tools...’ and ‘100% human’ text labels further to the left and right respectively so they are ANCHORS for the slider.  
  2. If possible, remove the statement text (‘preference mix...’) altogether, but this is less an issue.  
  3. And even less an issue, not have the 0-100 #s visible.  

#1 is the most critical I am trying to achieve, and the CSS I was provided can’t easily be adapted.


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5935 replies
  • March 31, 2025

@yve872,

Add this html/css to the question text:

<style>
	.QuestionBody.q-slider ul li.first { padding-right:40px; }
	.QuestionBody.q-slider ul li.last { padding-left:40px; }
	.JFEScope .Skin .q-slider ul.numbers { display:none; }
	.JFEScope .Skin .HSLIDER .q-slider .statement-container { display:none; }
</style>

The first two rules adjust the spacing between the labels. The third hides the number scale. The fourth hides the statement.

Also:

  • Turn off Show value in the question settings
  • Set the Custom start position to 50

Forum|alt.badge.img+2
  • Author
  • Level 1 ●
  • 5 replies
  • March 31, 2025

Thank you!!!!  This got me almost there!

I need to move the slider further down from the text AND indent the text more so it is even further left and right respectively.


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5935 replies
  • Answer
  • March 31, 2025

Increase the left/right padding form 40px to something more.

Add a margin to the bottom of the labels:

.QuestionBody.q-slider ul.labels { margin-bottom:10px; }

 

 


Leave a Reply