Advertisement
hogash

Untitled

Jan 29th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. //horizontal scroll fix
  3. (function($){
  4.  
  5. $(window).on('resize', fullwidth_it);
  6.  
  7. function fullwidth_it(){
  8. var w = $(window).width();
  9. var c = 940;
  10. r = (w - c)/2;
  11. $obj = $('.right-outline, .style3#rt-header ul.menu')
  12. $obj.css({ 'padding-right' : r, 'margin-right': '-'+r+'px' })
  13. return;
  14. }
  15. $(window).load(function(){
  16. fullwidth_it();
  17. });
  18. })(jQuery);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement