Cart price space between the text and the price

Hello guys

wonder how can i move the price at the cart to the center and make a space between a price and the text as you can see in the picture

store: bula.co.il

pass: geibee

thank you very much in advance :folded_hands:

1 Like

Hey @artiumc

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @artiumc

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:
@media (min-width: 750px){
.totals {
    justify-content: center !important;
    gap: 10px;
}
}
.totals {
    gap: 10px;
}

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

1 Like

thank ypu very much im really appreciate your help :folded_hands:

Thank you very much sir. it worked :folded_hands: