How to make auto padding from product list to shopping cart footer?
-
I want to my shopping cart footer will be in bottom just where card list in full, not all the time. How can i do sticky cart footer in sidebar?
Attachments:
You must be
logged in to view attached files.
Hello,
I am afraid it is not possible to do. You can attempt with WooCommerce layouts builder: https://xtemos.com/docs-cat/woocommerce-layouts-builder/?theme=woodmart
Best Regards
You are not understand my question. I need to add custom css to my cart widget for customizing checkout button to more higher when product is 1 and shifting lower when products adding more
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
body .cart-widget-side .wd-scroll-content {
position: static;
}
body .cart-widget-side .shopping-cart-widget-body {
flex: 0 0 auto;
}
In this case, when you have too many products, the buttons would be scrolled as the products list.
Best Regards