Currently, I am using "Sublime" and employing bootstrap 3.3, just like the author in my course. I attempted to insert the bootstrap as a script instead of a file, but encountered an issue when trying to change the color of the jumbotron class - it simply did not respond.
Interestingly, when I tested my code on codepen without including the bootstrap script (as it was already installed), the color-changing feature worked perfectly fine.
Does anyone know what could be causing this discrepancy?
Feel free to check out my codepen and see a snippet of my code below:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="container">
<div class="jumbotron">
<h1><span class="glyphicon glyphicon-camera" aria-hidden="true"></span> The Image Gallery</h1>
<p>Welcome to this beautiful images gallery</p>
</div>
And here's my css snippet:
body {
padding-top: 70px;
}
.navbar-inverse {
color: #2C2E41;
}
.jumbotron {
color: #2C2E41;
}