Styling 0:30 video

How to change the background color in disabled textbox controls

Learn how to change the background color in disabled textbox controls with SpreadsheetWeb. Follow focused steps, practical examples, and implementation…

To change the background color in disabled textbox controls;

  • Open Designer Interface,
  • Go to the ‘Stylesheet’ module.
  • Add a new stylesheet.
  • Enter the CSS rule for changing the background color in disabled textbox controls.
  • Save the stylesheet by clicking on the “Save” button.
CSS3 lines
input[disabled] {
    background-color: palegreen !important;
}