Hello there,
I am connecting my blog with Opencart and I am using Wordpress as the Main Navigation provider because it's so much better.
However I need to style the Opencart navigation in the same way as well as make it behave the same when there is a 2nd level of navigation.
I've done most of the styling, but I can't figure out how you do the Hover Drop down effect.
Is that some standard Jquery functionality? Can you please point me to the JS file that creates this behaviour so I can transfer it on my Opencart instalation and replicate the behaviour of sliding down?
Thanks a lot in advance.
Comments
this is javascript code:
jQuery(document).ready(function () {
It is on the bottom of fotter.php file.jQuery('div#header #nav li').hover(
function () {
jQuery(this).children('ul').slideDown(100);
},
function () {
jQuery('ul', this).slideUp(100);
}
);
});
Best,
Miłosz Kroczek