Can't make delete button visible

I am using the Crafty template and the delete button is hidden in the cart. I found a similar thread that suggested using this CSS code:

.woocommerce .product-remove {
visibility: block !important;
color: #cc0000;
}

But I have done that and it’s not working to override the default setting. What else can I do?
Use this product link to add a product that doesn’t have a qty count to test and see: http://www.choiceadaptive.com/product/business-booster/

Hello @kvpadmin,

Thanks for writing in! Actually your code is in correct. Have it updated and use this instead:

.woocommerce .product-remove {
  display: block !important; 
}

.woocommerce .product-remove a {
    color: #cc0000 !important;
}

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Feel free to make adjustment as you need. Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.