This is what the alert and close button should look like on my website, based on Bootstrap's design. However, after implementing it into my site, it ended up looking like this.
I attempted to modify the bootstrap.min.css file, but the changes did not take effect. I even tried uploading it to my VM and using vim to edit it. While the file was modified, the Inspector tool still showed no changes.
Here is the code snippet that I used:
<div class="alert alert-info alert-dismissable" role="alert" style="z-index:9999;position:relative;top:100px">
<button type="button" class="close" data-dismiss="alert" aria-label="Close" style="text-align:right;"><span aria-hidden = "true">×</span></button>
{{message}}
</div>
Additionally, I have confirmed that I included the necessary JavaScript. Can anyone offer assistance?