Home › Forums › WoodMart support forum › edit additional information tab › Reply To: edit additional information tab
Aizaz Imtiaz Awan
Hello,
Sorry for the delay in the response due to the weekend.
Colors for the Rows can be specifically changed with the help of Custom CSS as all the Rows here have separate and different classes added. The change would result in something like it is shown in the following Image: https://ibb.co/tzmSWM3
As an example, for the Brand row here the Color change would be possible with the following CSS applied:
This CSS would change the Background color of Row and will also change the Text color added:
.woocommerce-product-attributes-item.woocommerce-product-attributes-item--attribute_brand {
background: red !important;
color: #fff !important;
}
This CSS would change the Text color specifically for the Item’s Heading which is Brand in this CSS case:
.woocommerce-product-attributes-item.woocommerce-product-attributes-item--attribute_brand th {
color: #fff !important;
}
In this way, for other Rows the Custom CSS will need to be applied.
Best Regards