How can I modify my cart drawer design effectively?

NEED HELP

  • Please remove the top spacing over the product price

  • Please remove the border of the number selector

  • Please make the spacing between the two Buttons smaller

Shop Link: https://93f811-2.myshopify.com/

This is what you are looking for??

than edit this code in theme.css or you can add this in custom css

_**.gap-1 {**_
_**gap: 0rem !important;**_
_**}**_
<em>__line-item-quantity.h-stack.gap-4 * {__</em>
_**border: none;**_
_**}**_
_**.button-group {**_
_**gap: .25rem !important;**_
_**}**_

Hi @admintb

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.gap-1 {
    gap: 0rem !important;
}
line-item-quantity.h-stack.gap-4 * {
    border: none;
}
.button-group {
    gap: .25rem !important;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!