Does anybody know how I can get rid of the modal background via CSS? No matter what I do, it looks like it wont remove.
is what I mean
Thanks for any help!
Does anybody know how I can get rid of the modal background via CSS? No matter what I do, it looks like it wont remove.
is what I mean
Thanks for any help!
Welcome to Meta @darkpixlz
If you’re talking about the dark overlay behind the modal, you can hide it with something like this
.modal-backdrop.in {
display: none;
}
If you’re talking about the shadow behind the modal, you can remove it with something like this
.modal-inner-container {
box-shadow: none;
}
Thank you, this is the one that worked for me
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.