I’m looking to move the total price next to the checkout text within the checkout button on cart drawer on dawn theme and remove the estimated total and move the shipping & tax calculated at checkout text like this
password samurai
A user seeks to customize their Dawn theme cart drawer by repositioning the total price next to the checkout button text and relocating the shipping/tax notice.
Solution Provided:
A community member shared CSS code to achieve the desired layout changes:
flex-direction: column-reverse) to reorder cart drawer footer elements, moving the total price display above the checkout buttonCurrent Status:
The CSS solutions successfully resolved the initial layout request. However, a follow-up issue emerged: dynamic payment buttons in the cart drawer are displaying incorrectly at the top of the page instead of their intended position. The user is now seeking additional code to fix this button placement bug.
I’m looking to move the total price next to the checkout text within the checkout button on cart drawer on dawn theme and remove the estimated total and move the shipping & tax calculated at checkout text like this
password samurai
You pm me recently, this is the answer of your question.
.menu-drawer .list-social {
margin: 0;
}
.header--has-social .menu-drawer__utility-links {
padding-bottom: 0 !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
And for this post try this one.
.drawer__footer {
display: flex;
flex-direction: column-reverse;
}
.drawer__footer .cart__ctas {
order: 1;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!