How can I modify the cart count bubble size and font?

I’d really like to make the black circle smaller and the font bigger and more centered. How do I do this?? Any help is really appreciated!!

Sincerely,

Fouzzy

fouzzy_0-1692723773633.png

1 Like

Hi @fouzzy

Would you mind to share your Store URL website? with password if its protected. Thanks!

https://finity-case.com/
finity321

1 Like

Thank you for the information.

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:
.cart-count-bubble {
    font-size: 12px;
}
  • And Save.

I hope it help.

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

1 Like

Thank you, it helped changing the font size but I’d also like to change the black circle to a smaller size because it’s covering my whole cart icon.

1 Like

Try this one.

You can adjust the size if its not enought.

Same Instruction.

.cart-count-bubble {
    height: 1.5rem;
    width: 1.5rem;
}

I hope it help.

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

1 Like

Thank you so much!

1 Like