As you can see on mobile the cart count color is in white background, which covers the whole icon symbol at the back.
Is there a way to make the cart count like this exact so it looks neater:
My website is www.audette.store
A user is experiencing a mobile cart count display issue where a white background covers the cart icon, making it look cluttered. They want the count badge to appear cleaner and more compact, similar to a reference image they provided.
Proposed Solution:
.cart-count class with properties like background-color: transparent and border-radius: 50%Current Status:
The website in question is www.audette.store. Images were shared showing both the current problematic display and the desired appearance.
As you can see on mobile the cart count color is in white background, which covers the whole icon symbol at the back.
Is there a way to make the cart count like this exact so it looks neater:
My website is www.audette.store
Hi @withaudette
It looks like the cart count has a background that’s covering the cart icon. You can adjust this by modifying the CSS. Try adding the following CSS to your theme:
.cart-count {
background-color: transparent !important; /* Removes the white background */
color: #000 !important; /* Change this to your preferred text color */
border-radius: 50%; /* Makes it circular */
padding: 2px 6px; /* Adjusts the size */
font-weight: bold; /* Ensures visibility */
}
If you’re using a Shopify theme with built-in settings, check Theme Settings > Cart to see if there’s an option to customize the cart count style.
Hi it still doesn’t work