Guest User

cccc

a guest
Mar 31st, 2015
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_action('wp_footer', 'ava_sidebar_height');
  2. function ava_sidebar_height(){
  3. ?>
  4. <script>
  5. (function($){
  6. $(window).resize(function() {
  7. var contenth = $('.container .av-content-small.units').height();
  8. $('.sidebar.sidebar_right').css('min-height', contenth);
  9. }).resize();
  10. })(jQuery);
  11. </script>
  12. <?php
  13. }
Advertisement
Add Comment
Please, Sign In to add comment