css - Changing text color -
i have managed change color of other text in woocommerce shop using simple custom css plugin wordpress. there 1 text section not change. when go shop , click on skincare , soaps , click cupcake soap says "6 in stock" yellow. want change black. site http://84f.6c5.myftpupload.com/ , css
.woocommerce .stock in-stock { color: #000000; }
this has got stumped others changed not one. linda
your css wrong. in-stock
class you're identifying tag. also, in-stock
not defined within stock
. correct implementation be
.woocommerce .stock.in-stock { color: #000000; }
Comments
Post a Comment