I am trying to make the navigation bar appear on page load instead of when I scroll down the page. Currently, I am using this jQuery code:
<script type="text/javascript>
$(document).scroll(function() {
if ($(this).scrollTop() == 20) {
$("#floating-nav-content").slideUp(400);
} else {
$("#floating-nav-content").slideDown(600);
}
});
</script>
You can see where I am implementing this code by visiting .
Please note that this link is specifically for the internal pages of the site.