Hi!
I would love to move the subtotal lines to above the cart notes box on my cart page please. Any ideas on how to do that? Website is www.kensal.nz
Thanks!
Hi!
I would love to move the subtotal lines to above the cart notes box on my cart page please. Any ideas on how to do that? Website is www.kensal.nz
Thanks!
Hi @kensal the way debut is architected means you literally need to move the elements around in the source order in the cart.liquid file.
It can be done adding some bloat with a CSS band-aid.
Before modifying theme.css first try the below CSS in a custom.css file or custom css setting if available.
https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css
.cart__footer {
position: relative;
padding-top: 35px;
}
.cart-subtotal {
position: absolute;
top: 0;
right: 0;
}
If you need this customization then contact me for services.
Contact info in forum signature.
ALWAYS please provide context, examples: store url, theme name, post url(s) , or any further detail in ALL correspondence.
Hello @kensal
Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.
.cart-subtotal {
padding-left: 871px !important;
}
.cart__shipping.rte {
margin-left: 796px !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks