Styling 0:27 video

How to change the color of a slider control

Learn how to change the color of a slider control with SpreadsheetWeb. Follow focused steps, practical examples, and implementation guidance to complete the…

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;
}