Hi, i tried testing adding something on my cart however the text of “Cart” is overlapping on the green circle whenever something is added to my cart. Please help me move the green circle a bit to the right so it’s not clashing with the text.
Shop url - https://greenpaxusa.myshopify.com/
1 Like
Hi @GreenPax
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:
@media only screen and (min-width: 749px){
.header__icons .cart-count-bubble {
bottom: 1.5rem;
left: 2.5rem;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Hi @GreenPax
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
.cart-count-bubble {
left: unset !important;
right: 0 !important;
transform: translateX(50%);
}
Here is the result:
I hope this helps
Best,
Daisy
Hi @GreenPax
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
.cart-count-bubble {
left: unset !important;
right: 0 !important;
transform: translateX(50%);
}
Here is the result:
I hope this helps
Best,
Daisy
1 Like