I'm looking to achieve a similar design concept like the one on this website:
The navigation bar should remain fixed at the bottom of the window until you start scrolling.
I am unsure if this can be done using just CSS, but I have made some progress with the following code:
HTML
<div class="container">
<ul class="jquery slideshow">
<li><img src="01.jpg" /></li>
<li><img src="01.jpg" /></li>
</ul>
<div class="jquery navbar">
<div class="inner">
<a href="#s1" class="subNavBtn" id="s1">Section 1</a>
<a href="#s2" class="subNavBtn" id="s2">Section 2</a>
<a href="#s3" class="subNavBtn" id="s3">Section 3</a>
<a href="#s4" class="subNavBtn" id="s4">Section 4</a>
<a href="#s5" class="subNavBtn" id="s5">Section 5</a>
</div>
</div>
</div>
CSS
.container{
width:100%;
}
Currently, there is a slideshow and a navigation bar below it spanning the full width. My goal now is to make them responsive to fit any window size seamlessly.