Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#2304
Robert Kavgić
Participant

You want to apply the active class to a second horizontal tab and when you refresh the site you want it to stay active, not the first one?

You can achieve this by modifying the line 70 of include.js file.

var $tabLis = $(this).find('li');

add “.active” to “li”:

var $tabLis = $(this).find('li.active');

Let me know if it works.

Robert