Home Forums WoodMart support forum How to edit the Shopping cart widget?

How to edit the Shopping cart widget?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #716224

    kasper
    Participant

    How to edit the Shopping cart widget? Its the sidebar that pops up when a product is added to the cart. I need to change the design, like background color etc.

    #716235

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Can you share the page URL so I can further check on your site and give you a possible CSS code?

    Best Regards,

    #717935

    kasper
    Participant

    Check below 🙂

    #717959

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    Try to add the following Custom CSS code in Theme Settings > Custom CSS. Change the color as per your requirements.

    .cart-widget-side {
        background-color: #d58e8e; /* change background */
    }
    
    .cart-widget-side .widget_shopping_cart_content {
        background-color: #e24646;
    }
    
    .cart-widget-side .woocommerce-mini-cart .mini_cart_item {
        background-color: #f5f2f2;
    }

    Best Regards

    #718102

    kasper
    Participant

    Perfect, that worked very well, but there’s a white box appearing when hovering over the products. Could you help with fixing that?

    #718124

    Aizaz Imtiaz Awan
    Keymaster
    Xtemos team

    Hello,

    The white box on hover is coming from the product item background hover effect. Please add the following CSS in Theme Settings > Custom CSS:

    .cart-widget-side .product_list_widget > li:hover {
        background-color: transparent !important;
    }

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)