<header >
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="#" class="navbar-brand">
<img src="https://openclipart.org/download/244323/ColoredMandala.svg" alt="image " class="svg-img img-responsive" />
</a>
<div class="collapse navbar-collapse navbarHeader">
<ul class="nav navbar-nav navbar-right">
<a href="#">About</a>
</ul>
</div>
</div>
</div>
</nav>
</header>
Why is that "about " is not showing ?
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="#" class="navbar-brand">
<img src="https://openclipart.org/download/244323/ColoredMandala.svg" alt="image " class="svg-img img-responsive" />
</a>
<div class="collapse navbar-collapse navbarHeader">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">About</a></li>
</ul>
</div>
</div>
</div>
</nav>
:cookie: 298 | @radlerz1 |http://www.freecodecamp.com/radlerz1
:star2: 1573 | @skyc0der |http://www.freecodecamp.com/skyc0der
:star2: 2933 | @khaduch |http://www.freecodecamp.com/khaduch
@Gr8ayu Correct, the default is version 4, we learn version 3 at Free Code Camp. Click "Settings", then "CSS" and add this one:https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css
Then click "JavaScript" and add these two libraries (the order is important, jQuery must go first):https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js
:warning: gr8ayu already gave skyc0der points
:warning: gr8ayu already gave khaduch points
$("#tweet").click(function(){
if(!inIframe()) {
openURL('https://twitter.com/intent/tweet?hashtags=quotes&related=freecodecamp&text=' + encodeURIComponent('"' + currentQuote + '" ' + currentAuthor));
}
})