---
title: "Retain Product Remove “X” In Mobile Cart Pinnacle and Virtue"
source: "https://docs.nexcess.com/software/kadence/retain-product-remove-x-in-mobile-cart-pinnacle-and-virtue/"
description: "To retain the remove from cart \"X\" in mobile, add this CSS to Theme Options> Custom CSS in Pinnacle, or Theme Options> Advanced Settings in Virtue: [css]@media…"
vertical: "Software"
area: "Kadence"
date: "2021-07-15"
last_modified: "2021-07-15"
---

# Retain Product Remove “X” In Mobile Cart Pinnacle and Virtue

To retain the remove from cart “X” in mobile, add this CSS to Theme Options> Custom CSS in Pinnacle, or Theme Options> Advanced Settings in Virtue:

```
[css]@media (max-width: 767px){
    table.shop_table td.product-remove {
      display: table-cell;
      padding: 0;
    }
    table.shop_table th.product-remove{
        opacity:1;
        display: table-cell;
    }
    #content table.cart a.remove {
        font-size: 12px;
        width: 20px;
    }
}[/css]
```
