How do I get this drawing line in the cart?, and how do I get the text "CART" to the middle position

This is CAINTE: https://cainte.se/

This is the link to my website: https://mdnzn6tes8a76khb-65734639831.shopifypreview.com

1 Like

Hi @OneCap

Try 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:
header.cart-drawer__header.cart-drawer__content-item {
    padding-left: 40%;
    box-shadow: 0 1px rgba(0, 0, 0, 0.5)
}

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

1 Like

Could you make it little more space below CART?

Skärmavbild 2023-09-10 kl. 17.52.49.png

1 Like

Could you make it little more space below CART?

Yes, try this.

Same Instruction.

header.cart-drawer__header.cart-drawer__content-item {
    padding-bottom: 10px;
}

And Save.

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

1 Like