This is an area i'm not too knowledgable on. Basically I have a header on http://www.bradlyspicer.net which is responsive. I would like it so when the user scrolls down and the .header is off screen that a nav bar which follows appears at the top of the web page.
<div id="header" class="home-header">
<div class="slogan">
<?php bloginfo('name'); ?> <?php wp_title(); ?>
</div>
<!-- NAVIGATION -->
<nav id="navigation" class="nav" role="navigation" onclick="">
<?php wp_nav_menu(); ?>
</nav>
<!--NAVIGATION -->
</div>
This is the header which contains the navigation tag and it's id.
Similar to this site:
http://www.interviewmagazine.com/
Edit:
It's worth noting the site is responsive. So I would prefer it if only responsive code could be used.