I am experiencing difficulties with CSS as I am relatively new to it. Currently, I am utilizing the bootstrap popup in the following example. Upon clicking the 'Full Spec' button, a popup box appears.
However, it seems that the file bootstrap.min.css is causing an issue. When including bootstrap.min.css in my code, the popup box fails to appear. If I exclude that file, the popup box does appear, but the alignment and size of my images, text, and other elements are altered.
Is there a way for the popup box to display without disrupting the alignment and sizing of the image/text? I have attempted to modify the code in bootstrap.min.css, but it proves difficult as I need to scroll horizontally instead of vertically.
Please assist me in resolving this problem. Thank you!
https://i.sstatic.net/xnQIm.png
<head>
<meta charset="utf-8">
<link rel="icon" type="image/ico" href="favicon.ico">
<title>Test</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/templatemo_misc.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="js/vendor/modernizr-2.6.1-respond-1.1.0.min.js"></script>
<script src="js2/jquery.js" type="text/javascript"></script>
<script src="js2/bootstrap.js" type="text/javascript"></script>
</head>