I am currently facing some challenges with the carousel in my HTML code. I am unable to get it to display images properly. Additionally, there is an issue with the background color of my navigation bar - it doesn't stay at 100% width. Also, when using live view and clicking on the arrows to navigate to the next or previous slide, the placement of the carousel resets behind the navigation bar.
<html>
<head>
<title>Funky Munky Arcade</title>
<meta name="viewport" content="width=device-width, initional-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container nav-container">
<ul class="nav nav-justified">
<li><a href="#">Parties</a></li>
</ul>
<div class="navbar-header">
<a href="/index.html" class="navbar-left"><img src="http://i.imgur.com/UXms4Eq.png" class="logo"></a>
</div>
<ul class="nav nav-justified">
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<!-- Beginning of Carousel -->
<div class="carousel slide" id="bannerslides" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#bannerslides" data-slide-to="0" class="active">
</li>
<li data-target="#bannerslides" data-slide-to="1">
</li>
<li data-target="#bannerslides" data-slide-to="2">
</li>
<li data-target="#bannerslides" data-slide-to="3">
</li>
</ol>
<!-- End of Indicators -->
<!-- Wrapper for Slides -->
<div class="carousel-inner">
<div class="item active">
<img src="https://db.tt/W08hePZ53h">
</div>
<div class="item">
<img src="http://i.imgur.com/t0Y4JDI.png">
</div>
<div class="item">
<img src="http://i.imgur.com/zaUETSd.png">
</div>
<div class="item">
<img src="http://i.imgur.com/LRATkRS.png">
</div>
</div>
<!-- End of Wrapper -->
<!-- Beginning of Carousel Controls -->
<a class="left carousel-control" href="#bannerslides" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#bannerslides" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End of Carousel Controls -->
</div>
<!-- End of Carousel -->
Below is my CSS:
.nav-container {
display: flex;
align-items: center;
background-color: red;
width: 100%;
}
.head {
text-align: center;
}
.intro{
font-size: 48px;
text-align: center;
}
.jumbotron{
background-color: white;
font-size: 24px;
}
.navbar-fixed-top{
background-color: red;
border: 0px;
}
.logo{
background-color: white;
border-radius: 50%;
}
.carousel{
margin-top: 150px;
}