Archived topic
Background color for the Tabs
1 reply · Started by Bilal on March 2, 2019
Viewing posts 1–2 of 2
How can I add the background color for the "Tabs" in single products?
Hi there,
try this:
.woocommerce #content div.product .woocommerce-tabs ul.tabs li {
margin-left: 0;
margin-right: 0;
padding: 0 10px;
background-color: #ddd; /* All tabs background color */
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active {
background-color: #e82c2c; /* Current tab background */
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a {
color: #fff; /* Current tab background text */
}
This archived topic is closed to new replies.