I'm encountering a problem here. One of my friends assisted me with Bootstrap elements for my website, but after switching my site to Bootstrap, I am unable to change the background color on my website. Can someone lend a hand? Much appreciated! Also, while assisting me, could you please guide me on how to create a Facebook social link with the Facebook icon displayed, and when hovering over the icon, have it display in another color? Thanks again!
HTML Code:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge,chrome-1">
<title>My Portfolio</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-left">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="About%20Me.html">About</a>
</li>
<li>
<a href="Pictures.html">Pictures</a>
</li>
<li>
<a href="Contacts.html">Contact</a>
</li>
</ul>
</div>
</nav>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="Images/Image10.jpg" alt="...">
<div class="carousel-caption">
<h3>Near my house: a meadow</h3>
</div>
</div>
<div class="item">
<img src="Images/Image4.jpg" alt="...">
<div class="carousel-caption">
<h3>Flume Gorge: A Waterfall</h3>
</div>
</div>
<div class="item">
<img src="Images/Image3.jpg" alt="...">
<div class="carousel-caption">
<h3>Flume Gorge: The Forest</h3>
</div>
</div>
</div>
<div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-md-4">
<h3>Location</h3>
<p>School Address: Not Availible</p>
</div>
<div class="footer-col col-md-4">
<h3>Connect with Social Media!</h3>
<div>
<a href="https://www.facebook.com/MyUsername"></a>
</div>
</div>
<div class="footer-col col-md-4">
<h3>About Bootstrap</h3>
<p>Bootstrap is a free open source project that help simplifies the creation of websites</p>
<p><a href="http://getbootstrap.com/">Get Bootstrap Now</a></p>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
Copyright © Name 2015-2016
<p> All music used on this site belongs to the respective authors</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>
CSS Code:
.navbar-custom .nav li a {
color: #fff;
padding: 20px;
}
.navbar-custom .nav li a {
text-transform: uppercase;
font-size: 12px;
font-weight: 800;
letter-spacing: 1px;
}
.navbar-default .navbar-nav>li>a {
color: #777;
}
#carousel-example-generic{
width: 60%;
height: 100%;
margin: 0 auto;
}
.footer {
margin-top: 20px;
text-align: center;
font-size: 11px;
font-family: Verdana, Geneva, Tahoma, Arial, Helvetica, sans-serif;
}
.footer {
margin-top: 20px;
text-align: center;
font-size: 11px;
font-family: Verdana, Geneva, Tahoma, Arial, Helvetica, sans-serif;
}