0
Votes
Undo
  1. cloudfaction
  2. Commercial Templates
  3. Thursday, 12 February 2015
  4.  Subscribe via email
how can i get the entire head of habitat, including the logo and headers to become sticky? not only the menu, but all that is above the menu also.
Accepted Answer Pending Moderation
0
Votes
Undo
Hello

To fix the entire header of your Habitat template try replacing the following in your templates scripts.php (../templates/j51_habitat/php/scripts.php)...


<!-- Sticky Div -->
<script type="text/javascript" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/jquery.sticky.js" charset="utf-8"></script>
<script type="text/javascript" >
jQuery(window).load(function(){
jQuery("#container_hornav").sticky({ topSpacing: 0 });
});
</script>


With...


<!-- Sticky Div -->
<script type="text/javascript" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/jquery.sticky.js" charset="utf-8"></script>
<script type="text/javascript" >
jQuery(window).load(function(){
jQuery("#container_header").sticky({ topSpacing: 0 });
});
jQuery(window).load(function(){
jQuery("#container_hornav").sticky({ topSpacing: 165 });
});
</script>


CiarĂ¡n
  1. more than a month ago
  2. Commercial Templates
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!