How to remove bootstrap modal overlay?

Manigandaprabhu picture Manigandaprabhu · Sep 8, 2015 · Viewed 57.8k times · Source

How to remove bootstrap modal overlay for particular modal. when modal appears background has black color with some opacity is there any option for removing that elements...

Answer

Mario Shtika picture Mario Shtika · Feb 24, 2017

Add data-backdrop="false" option as attribute to the button which opens the modal.

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal" data-backdrop="false">
  Launch demo modal
</button>

See modal options