• Resolved ericbr13

    (@ericbr13)


    I’ve looked everywhere online, but I cannot figure out how to change this menu cart design. The menu cart widget doesn’t allow me to remove the quantity buttons, and why the hell is the price all the way to the right like that? How do I make this not look absolutely stupid? Would really appreciate help with this, thanks! Here’s a link to view it: https://www.canva.com/design/DAFxHjCNYuA/LcnzqC8FBcXxiPDX-vr_Mg/view?

    • This topic was modified 2 years, 8 months ago by ericbr13.
    • This topic was modified 2 years, 8 months ago by ericbr13.
    • This topic was modified 2 years, 8 months ago by ericbr13.
    • This topic was modified 2 years, 8 months ago by ericbr13.
Viewing 1 replies (of 1 total)
  • Hi @ericbr13

    Can you confirm if the issue persists on the mobile version only?

    In the meantime, these changes can be made by modifying the CSS, which controls the appearance of your website. Please go to Appearance > Customize > Additional CSS, and then add the following code:

    .woocommerce .quantity .qty {
        display: none !important;
    }
    

    This is to remove the quantity box.

    As for the price alignment, it’s likely that your theme is causing the price to be displayed to the right. You can adjust this by adding this code:

    .woocommerce .product-price {
        text-align: left !important;
    }
    

    In case it does not work, please replace .woocommerce .quantity .qty and .woocommerce .product-price with the actual CSS classes used in your theme. You can inspect the elements in question using your browser’s developer tools (usually accessed by pressing ‘CTRL+SHIFT+I’) to find the correct CSS classes.

Viewing 1 replies (of 1 total)

The topic ‘Dumb Elementor Menu Cart Widget’ is closed to new replies.