View Single Post
  #72  
Old 02-27-2015, 07:08 PM
 
anandat anandat is offline
 

X-Adept
  
Join Date: Jan 2004
Posts: 914
 

Default Re: NEW xMenus - The Ultimate Menu Manager for X-Cart

Quote:
Originally Posted by totaltec
I personally think stickUp, is overkill. I can achieve the same effect with 5-6 lines of jQuery code. If you are looking for an example see http://xcartnext.com

Code:
/* * Floating Menu */ var $menu = $('#main-wrapper'); menuOffsetTop = $menu.offset().top; $(document).bind('ready scroll', function () { var docScroll = $(this).scrollTop(); if (docScroll >= menuOffsetTop - 65) { $('#page').addClass('fixed_menu'); } else { $('#page').removeClass('fixed_menu'); } });
Thanks Mike
Can you please tell me in which file I need to add above code to achieve StickUp for Xmenu?
__________________
X-Cart: 4.7.7 LIVE
Skin:Ultra by xcartmods.co.uk
X-cart Modules: | ACR, Rich Google Search, Customer Testimonials | Cloud Search, | Websitecm: CDSEO (2.1.9)
---------------
Server: Linux
php: 5.3
mysql: 5.0.89
----------------
Reply With Quote