Avada Forums Community Forum Custom CSS for tab title text color on active and hover only Reply To: Custom CSS for tab title text color on active and hover only

hawea74
Participant
Post count: 6

Hi – I’m not sure if this is best-practice css, but it worked for me to target active tab heading colour and active tab heading hover colour.

/* Active tab heading colour */
.fusion-tabs .nav-tabs > li.active a .fusion-tab-heading {
color: #ffffff !important;
}

/* Active tab heading hover colour */
.fusion-tabs .nav-tabs > li.active a:hover .fusion-tab-heading {
color: #dddddd !important;
}