1
Hello
I have a type button image that supposedly should be opening the modal but on my site does not open.
I have bootstrap installed from the most updated version, I can not understand why my modal does not open, someone can help me?
<div class="imagemavatar">
<img type="button" src="./imagens/avatar2.png" class="img-fluid" data-toggle="modal"
data-target="#exampleModalCenter1" >
</div>
<div class="modal fade" id="exampleModalCenter1" tabindex="-1" role="dialog"
aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<!-- hearder -->
<h5 class="modal-title" id="exampleModalLongTitle">Lúcia Rodrigues</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<!-- body -->
<div class="imagemdocaso">
<img src="./imagens/avatar2.png" width="100%" height="100%">
</div>
<div class="descricao">
<p>
<b>Data do caso:</b> 05 de janeiro de 2019 <br>
<b>Nome da vítima:</b> Lúcia Rodrigues <br>
<b>Idade da Vítima:</b> 48 anos <br>
<b>Localidade:</b> Lagoa, Algarve
</p>
</div>
</div>
<div class="modal-footer">
<!-- footer -->
<a href="https://www.cmjornal.pt/exclusivos/detalhe/cacador-mata-mulher-por-ciumes-doentios"
class="noticia btn btn-outline-warning buttonlink" target="_blank">Noticia completa</a>
</div>
</div>
</div>
</div>
as I appreciate but am having a problem when I step these 3 scripts down other scripts stop working!
– David Mv
Forget it, I got it fixed! after all the problem was not having the scripts at the bottom or on top of the modal was even the order of reading the scripts wherever they are!
– David Mv
@Davidmv this Bootstrap type frameworks can sometimes be quite boring, these orders have to be followed to the letter, or things stop working. That well that solved there. []s
– hugocsl