So this is situation, fist code show class when nav is on bottom...
<div id="navigation" class="attached-to-bottom">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</div>
this show when my navigation stay sticket to top after i scroll down (with jquery etc etc), but i need change navigation id height to be different when i triger class "attached-to-top") Can i do that with CSS only or?
<div id="navigation" class="attached-to-top">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</div>