HTML
<div class="woocommerce-tabs wc-tabs-wrapper">
<ul class="tabs wc-tabs">
<li class="paym-plans_tab">
<a href="#tab-paym-plans">Contract Deals</a>
</li>
<li class="simfree-plans_tab active">
CSS
#tabs ul.wooTabs li a.selected, #tabs ul.tabs li.active a, .woocommerce_tabs ul.tabs li.active a, .woocommerce-tabs ul.tabs li.active a {
background: #52b9e9 none repeat scroll 0 0;
color: white;
}
Seeking to modify the background color and text color of specific WooCommerce tabs with class .paym-plans_tab active
and .simfree-plans_tab active
to #52b9e9
and white respectively when the tab is selected. Currently, the provided CSS affects all tabs. Is there a way to target only the tabs I want?