0
I’m with trying to use the modal of bootstrap to change the information of table names, but when I call the modal happens what is appearing in the image, it gets superimposed behind.
I’m using the https://getmdl.io of Google as the main theme, and I have identified that what causes this is the class mdl-layout__content, when I remove it it does not happen this problem, but the layout of the page does not look as it should.
How can I fix this?
Have you tried changing his z-index?
– Lucas Brogni
This class "mdl-layout_content" has a z-index set as :1, you have to put your modal in a z-index greater than 1 and it may solve. This may depend on the context of the positions also.... but put everything that is modal code last in your document and put z-index:10; for example to test
– hugocsl
I’m doing some tests with the tips that have passed, I’ll let you know if I made it. vlw
– Marcos Rai Alves da Cunha
The problem was exactly his z-index, I removed z-index: 1 from the "mdl-layout_content" class and the problem was solved. ?
– Marcos Rai Alves da Cunha
@Marcosraialvesdacunha was worth the force that good that worked there!
– hugocsl