Change the look and feel of the disabled textboxes
Styling 0:29 video

How to change the look and feel of the disabled textboxes

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

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.
CSS14 lines
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;
}