Is it feasible to make that bar always visible while scrolling?
I am looking to keep the navigation and the top bar (the one with the logo) fixed in place during scrolling.
Here is the HTML code snippet for the logo bar:
<!--*-*-*-*-*-*-*-*-*- Start Logo Bar *-*-*-*-*-*-*-*-*-->
<div class="container-fluid logo-bar">
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="row">
<!--======= Text =========-->
<div class="col-md-4 logo_bar_icons">
<h2 class="first-text"><b>Living</b>,<br>as you <b>like it.</b></h2>
</div>
</div>
</div>
<!--======= Logo =========-->
<div class="col-md-3">
<a href="index.html">
<img src="img/logo_2.png" class="img-responsive" alt="Logo" id="" />
</a>
</div>
</div>
</div>
</div>
<!--*-*-*-*-*-*-*-*-*- End Logo Bar *-*-*-*-*-*-*-*-*-->