Whenever I utilize...
<div id="stay">
<%= render 'layouts/navbar' %>
</div>
#stay ul.TabNav {
background: #FFFFFF;
border-bottom:solid 2px #00E5EE;
padding:0 0px;
font-size:13px;
overflow:hidden;
background:-moz-linear-gradient(0% 100% 90deg,#FAFAFA, #FFF);
background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#FAFAFA), to(#FFF));
position:relative;
top:0px;
}
... it remains fixed at the top..
I want it to stay in place as the page is scrolled down, giving the impression that it is floating along with the content.
Appreciate your help.