How to increase cart drawer width
Hi @NOT1 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
@NOT1 , add this one to base.css file
.drawer__inner {
width: 54rem !important;
}
How can i change the total price padding to -30px
Hi @NOT1 , Pls replace old code to this new code:
Hello @NOT1 Please follow these steps to add this CSS code:
- Go to your Online Store
- Click on “Themes”
- Select “Edit code”
- Open your component-cart-drawer.css CSS file.
- Update the following code at the end of the file.
Find the CSS with class “.drawer__inner” and set width of drawer as you want.
.drawer__inner {
height: 100%;
width: 50rem; /* update this CSS */
max-width: calc(100vw - 3rem);
padding: 0 1.5rem;
border: .1rem solid rgba(var(--color-foreground), .2);
border-right: 0;
overflow: hidden;
display: flex;
flex-direction: column;
transform: translate(100%);
transition: transform var(--duration-default) ease;
}
Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.
How can I remove the price under the title which is at grey color
Hi @NOT1 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
@NOT1 , to remove the price under the title which is at grey color use this code
.cart-item__details > .product-option {
display: none;
}
Result:
@NOT1 , to remove the price under the title which is at grey color use this code
.cart-item__details > .product-option {
display: none;
}
Result:
how can i remove the commas
how can i decrease the box size of quantity
@NOT1 , use this code
.quantity-popover-container {
max-width: 12rem;
}
Hi @NOT1 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
How can i put the price at the same line as the quantity card
Hi @NOT1 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()

