• Hi!

    We are using your plugin, and its great. But we want the tab to be inactive when entering the site. Is this possible? We want the user to press a icon to see the brands and not show the first one as active and show all its content.

    • This topic was modified 5 years, 5 months ago by jakobad.
Viewing 1 replies (of 1 total)
  • Plugin Author Nenad Obradovic

    (@nenad-obradovic)

    Hi jakobad,

    Thank you ??

    You can try to use custom js code for that purpose, for example

    var tabNav = jQuery('.evc-tabs .evc-tabs-nav li');
    if (tabNav.length) {
    	tabNav.removeClass('ui-tabs-active ui-state-active');
    }
    var tabContent = jQuery('.evc-tabs .evc-tabs-item');
    if (tabContent.length) {
    	tabContent.removeClass('evc-active');
    }

    just add this code on Window load event.

    Best regards,
    Nenad

Viewing 1 replies (of 1 total)
  • The topic ‘Make tab not active by default’ is closed to new replies.