Page 1 of 1

CSS for an active tab

Posted: 25 Mar 2015
by Thomas Settergren
Hi,

I'm trying to setup some css text-color for when a tab is active.

I have figured out how to target the right css class to attach the hover-effect to for when you mouse over a tab, but I have trouble targeting the right css class for changing the text color for when a tab is active.

Hope someone can help.


Best regard

Thomas

Re: CSS for an active tab

Posted: 26 Mar 2015
by Dmitry Kozlov
Hi Thomas,

Please, try the following CSS:

Code: Select all

.ui-tabs-active > a {
	color: red !important;
}