Hi,
I am trying to make sense how different stylesheets are loaded in.
So far I have been editing CSS through Theme Options/ Custom CSS and it has been working fine
Now I am trying to change text and background colour of cart-collateral table by adding custom css to Theme options/Custom CSS but none of my changes appear on developer tools.
I also tried to add it from Additional CSS and via Child theme editor but didn't see the changes either.
Could you please explain where in the directory are these changes applied.
Would a theme update wipe the changes made to Theme options/CSS and would it make more sense to add custom css to style.css file in the child theme
This is the CSS I have been trying to add
.woocommerce .shop-table {
background-color:white!important;
}
.woocommerce .shop-table span{
color:black!important;
}
.woocommerce .shop-table th{
color:black!important;
}