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\'
For Bootstrap 4 you may have to use .modal-backdrop.show and play around with !important flag on both background-color and opacity.
.modal-backdrop.show
!important
background-color
opacity
E.g.
.modal-backdrop.show { background-color: #f00; opacity: 0.75; }