Search Knowledge Base by Keyword
How to change the look and feel of the disabled textboxes
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;
}