Solved
Format Shown Values of Slider Choices
I have sliders with selected values displayed on the left hand side. I would like those displayed values to be bold, and also add a "%" sign after the displayed values.
How do you format the displayed slider values so that they are bolded and is followed by a % sign?
Best answer by TomG
> @1ag0 said:
> I have sliders with selected values displayed on the left hand side. I would like those displayed values to be bold, and also add a "%" sign after the displayed values.
>
> How do you format the displayed slider values so that they are bolded and is followed by a % sign?
Do you mean the right hand side? (as in a Non-mobile friendly Slider or a Constant Sum slider). CSS:
```
.Skin .horizontalbar table.sliderGrid tr td.value input[type=text] {
font-weight:bold;
width:2.1em;
}
.Skin .horizontalbar table.sliderGrid tr td.value:not(:first-of-type)::after {
content: "%";
font-weight: bold;
}
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
