Despite my efforts to address this issue using previous solutions, nothing seems to work for me. The older recommendations don't seem to apply anymore due to changes in Bootstrap. So I'm reaching out again for help, sorry about that.
I came across a theme on CodePen that I'm tweaking to enhance my understanding of Bootstrap based on advice from FreeCodeCamp. However, I'm struggling with one simple thing.
The navbar is causing unnecessary white space along the right margin throughout the entire website.
You can see it here: http://codepen.io/Er-c/pen/YGzkmG/
Here's the relevant code (I believe)
<nav class="navbar navbar-fixed-top">
<div class="container">
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav navbar-right links">
<li class="hidden">
<a class="page-scroll" href="#page-top"></a>
</li>
<li><a class="page-scroll" href="#about">About</a></li>
<li><a class="page-scroll" href="#services">Services</a></li>
<li><a class="page-scroll" href="#news">News</a></li>
<li><a class="page-scroll" href="#portfolio">Portfolio</a></li>
<li><a class="page-scroll" href="#clients">Clients</a></li>
<li><a class="page-scroll" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
Any suggestions on how to remove the excess white space on the right?
I feel completely stuck.