So guys, I created a modal like this:
<div class="modal fade" id="#siteModal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Softwares</h5>
<button type="button" class="close" data-dismiss="modal">
<span>×</span>
</button>
</div>
<div class="modal-body">
<p>...</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">CERTO</button>
</div>
</div>
</div>
</div>
But when I make the following call:
<a href="#" class="card-link mb-1 txt btn btn-outline-dark" data-toggle="modal" data-target="#siteModal">SAIBA MAIS</a>
The modal is not called, because it is conflicting with the one-page style layout, because it is using the id="#" that is equal to the href of the link that will call the modal. How do I make the modal appear? Any suggestion? Because when I click the button it plays to the beginning of the site, obeying the id="#"