I am assuming you want to set the opacity of the modal background…
Set the opacity via CSS
.modal-backdrop
{
opacity:0.5 !important;
}
!important prevents the opacity from being overwritten – particularly from Bootstrap in this context.
I am assuming you want to set the opacity of the modal background…
Set the opacity via CSS
.modal-backdrop
{
opacity:0.5 !important;
}
!important prevents the opacity from being overwritten – particularly from Bootstrap in this context.