Modal Bootstrap is under the shadow and I can not use it

0

Good, I have a poroblema in my site and it is that a modal bootstrap when launching it opens but it remains as under the shadow let's say. Looking a lot with the chrome inspector I will find that by disabling the position : relative of the styles the problem is fixed, the issue is that these styles come from bootstrap. Is there a way to cancel it from my site?

That's when it does not work, let's say

And this way is how I fix it from the inspector

    
asked by Santiago D'Antuoni 11.01.2017 в 02:31
source

2 answers

0

For people who may have this problem, solve it by looking with the inspector that bothered me and in the css of the modal you create that class that already has bootstrap and change the value that was fixed to relative and stayed working

.modal-backdrop{
 position: relative; 
}
    
answered by 14.01.2017 / 02:36
source
-1

You can always use the! important to step on a property of another class that conflicts, but it is not advisable to abuse it.

    
answered by 14.01.2017 в 03:20