Get rid of modal background with CSS

Welcome to Meta @darkpixlz :wave:

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;
}
3 Likes