Styling 0:29 video
How to change the look and feel of the disabled textboxes
Learn how to change the look and feel of the disabled textboxes with SpreadsheetWeb. Follow focused steps, practical examples, and implementation guidance…
To change the look and feel of the disabled textboxes;
- Open Designer Interface,
- Go to the ‘Stylesheet’ module.
- Add a new stylesheet.
- Choose the disabled textbox control stylesheet from ‘Style Template’ for changing the look and feel of the disabled textboxes.
- Save the stylesheet by clicking on the “Save” button.
input.form-control:disabled {
text-align: right;
border: 0 !important;
background: none !important;
}
textarea.form-control:disabled {
background: none;
border: 0;
}
input:disabled ~ span.input-group-addon {
display: none;
}