Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #4515149
Problem with mobile
Open

Comments

  •  2
    Manuel started the conversation

    Hey, unfortunately, the shopping cart is displayed on the mobile phone in such a way that it cannot be used. The “x” that deletes an item is located exactly on the “+” that is used to increase the quantity. I have attached a screenshot. I would appreciate some quick help. Thank you!

    Attached files:  Screenshot_20251111-120956.png

  •  1,561
    Dustin replied

    Hi Manuel,

    Please add the CSS code below to WP-Admin → Appearance → Customize → Additional CSS:

    .woofc-area .woofc-area-mid .woofc-item:hover .woofc-item-inner {
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    
    @media only screen and (max-width: 768px) {
        .woofc-area .woofc-area-mid .woofc-item .woofc-item-inner {
            padding: 10px 30px 10px 0 !important;
        }
    }

    It will fix the problem for both desktop and mobile.

    Best regards,
    Dustin