Hey Coders,
I have spent a few days attempting to style my header to no avail. I basically want my un-ordered list to display horizontally across the header and collapse into a hamburger icon for smaller screens. My hamburger menu is just an all beef patty and I can’t figure out how to display the list horizontally. Here is a link and my header source code. I have bootstrap linked. If anyone has any help or ideas I would appreciate it greatly.
Thank you,
Stephen Johns
<div class="container">
<a href="#" class="navbar-brand" id="pageTitle">Atlanta United<br>Unite and Conquer!!</a>
<button class="navbar-toggle" data-toggle="collapse" data-target=".navHeaderCollapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="collapse navbar-collapse navHeaderCollapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#">Home</a>
</li>
<li><a href="#">Roster</a>
</li>
<li><a href="#">Player Stats</a>
</li>
<li><a href="#">Fan Zone</a>
</li>
<li><a href="#">Memorable Goals</a>
</li>
<li><a href="#">Contact Me</a>
</li>
</ul>
</div>
</div>