I have a problem using bootstrap, capable is very simple but I can not find how to solve it and it leaves me "a white margin" next to the carousel and the pink bar ... (Or I do not know if it is rather that the bar gray will have some feature that makes it longer ...)
I do not know how to add the code yet, first time on this page and it comes out in a strange way D:
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<title>MafeMakeUP</title>
</head>
<body>
<!--Barra informativa -->
<div class="row barrainfo">
<div class="col-md-4 textinfo"> Email: [email protected] </div>
<div class="col-md-4 textinfo"> Contacto: (VE)+58414-2691128 </div>
<div class="col-md-4 textinfo"> Social: @itsmafemakeup </div>
</div>
<div class="row contenidoheader">
<div class="col-4 headerlogo"><img class="imglogo" src="img/logo.png"></div>
<div class="col-8 contenedorheader">
<div class="row">
<div class="textheader"><a href="inicio" style="color: green; text-decoration: none;">INICIO</a></div>
<div class="textheader"><a href="quiensoy" style="color: green; text-decoration: none;">¿QUIEN SOY?</a></div>
<div class="textheader""><a href="cursosperso" style="color: green; text-decoration: none;">CURSOS PERSONALIZADOS</a></div>
<div class="textheader"><a href="contacto" style="color: green; text-decoration: none;">CONTACTAME</a></div>
</div>
</div>
<!-- Fin de barra informativa-->
<!-- Carrusel del INDEX -->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100 imgcarousel" src="img/maquillaje.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100 imgcarousel" src="img/maquillaje2.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100 imgcarousel" src="img/maquillaje3.jpg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Fin del carrrusel -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="particles.php"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>
And here's the CSS
.barrainfo {
max-height: 140.73px;
background-color: #DADDDF;
font-family: verdana;
font-size: 13px;
padding-left: 90px;
padding-top: 10px;
}
.textinfo {
padding-bottom: 10px;
}
.textheader {
text-decoration: none;
float: left;
padding-left: 90px;
padding-top: 22px;
font-family: verdana;
font-size: 15px;
color: red;
}
.imgfondo {
width: 100%;
height: 100%;
}
.contenedorheader {
padding: 0px;
margin: 0px;
}
.imglogo {
width: 100%;
height: 100%;
}
.headerlogo {
height: 65px;
background-color: aqua;
margin: 0px;
padding: 0px;
}
.contenidoheader {
height: 65px;
max-height: 250px;
background-color: pink;
margin: 0px;
padding: 0px;
}
.imgcarousel {
width: 100%;
height: 508px;
}