Change the color of a slider control | SpreadsheetWeb
Styling 0:27 video

How to change the color of a slider control

One focused task, a quick video, and concise steps you can scan immediately.

To change the color of a slider control;

  • Open Designer Interface,
  • Go to the ‘Stylesheet’ module.
  • Add a new stylesheet.
  • Enter the CSS rule for changing the color of a slider control.
  • Save the stylesheet by clicking on the “Save” button.
CSS9 lines
/* handle */
.ui-slider-handle {
    background-color: antiquewhite!important;
}

/* bar*/
.slidercontrol {
    background-color: violet;
}