I'm adding some Bootstrap nav to my website, specifically a Dropdown, but with the 3.3.7 bootstrap version I found everything strange without Dropdown style.
Then I went to the bootstrap documentation and found the version 4.0.0 that perfectly loads the dropdowns however, all my other page is with:
Huge letters where they should not be. Some elements such as TABLES and INPUTS increased their size and although they are responsive, the information looks messy.
Is there any form or version of bootstrap that works for me and the dropdowns look good and the rest of the style is acceptable?
CURRENT CDN
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" crossorigin="anonymous">
PREVIOUS CDN
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
with version 3.3.7 of bootstrap looks like this:
With version 4.0.0 it looks like this:
The structure of my pages is as follows:
<?php
require_once 'header.php';
//Body de la pagina
requiere_once 'footer.php';
?>
The HEADER.PHP
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/estilos.css">
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/3.0.2/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" crossorigin="anonymous">
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
THE FOOTER.PHP
</body>
<script src="js/jquery.min.js"></script>
</html>
And the code that contains my DROPDOWNS is:
<ul class="nav nav-pills">
<li class="nav-item dropdown">
<a class="nav-link active dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Prestamos</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="clientssession.php">Estado de Prestamo</a>
<a class="dropdown-item" href="clientssession_paymentshistory.php">Historial de pagos</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Informacion General</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Ahorros</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="clientssession_ahorros.php">Estado de Ahorros</a>
<a class="dropdown-item" href="#">Historial de Abonos y Retiros</a>
</div>
</li>
</ul>