Hello
How can make it that when mouse hovering “tab title” it will auto open, unnecessarily after I click it.
Hi Zeng!
Try opening up /enfold/js/shortcodes.js and change the “click” to “mouseover” on lines 2526, 2534, and 2546.
For example line 2526 look like this.
tab.addClass('tab_counter_'+i).bind('click', function()
And it should be changed to this.
tab.addClass('tab_counter_'+i).bind('mouseover', function()
Best regards,
Elliott
It isvery good, thanks for your help.