When creating a modal in twitter bootstrap, is there any way to change the background color? Remove the shading entirely?
NB: For removing shading, this doesn\'
To change the color via:
Put these styles in your stylesheet after the bootstrap styles:
.modal-backdrop {
background-color: red;
}
Changes the bootstrap-variables to:
@modal-backdrop-bg: red;
Source
Changes the bootstrap-variables to:
$modal-backdrop-bg: red;
Source
Change @modal-backdrop-bg to your desired color:
getbootstrap.com/customize/
You can also remove the backdrop via Javascript or by setting the color to transparent.