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.

#2977
Robert Kavgić
Participant

Hello,

There is no need for additional jquery code.

Just add class="active" to the tab’s <li> which you want to set as active.

For example – tabs without active class:

<ul class="tabs">
	<li>
		<a href="#tab1">Heading 1</a>
	</li>
	<li>
		<a href="#tab2">Heading 2</a>
	</li>
	<li>
		<a href="#tab3">Heading 3</a>
	</li>
</ul><!-- .tabs end -->

Tab list which has the second element set as active:

<ul class="tabs">
	<li>
		<a href="#tab1">Heading 1</a>
	</li>
	<li class="active">
		<a href="#tab2">Heading 2</a>
	</li>
	<li>
		<a href="#tab3">Heading 3</a>
	</li>
</ul><!-- .tabs end -->

Robert