Fade Effect for Product Tabs (add one line = neat effect)
Posted: Mon Dec 21, 2009 8:48 pm
Howdy,
This is soooo simple to add and really adds a nice effect to the Description, Additional Images, Reviews (0) and Related Products tabs on the product pages.
Navigate to this file:
./catalog/view/javascript/jquery/tab.js
At line 14, you have this:
Put this ABOVE it, so it now reads:
Save it and now go and play with the sub tabs on a product page, neat eh?
Matt
This is soooo simple to add and really adds a nice effect to the Description, Additional Images, Reviews (0) and Related Products tabs on the product pages.
Navigate to this file:
./catalog/view/javascript/jquery/tab.js
At line 14, you have this:
Code: Select all
$($(this).attr('tab')).css('display', 'block');
Code: Select all
$($(this).attr('tab')).fadeIn();
$($(this).attr('tab')).css('display', 'block');
Matt