Hi, using Stiletto Theme and I want to show the circle product swatches as default instead of the word “3 colors”, currently the circle swatches only appear on hover and I’d like for them to appear immediately and remove the text above it for all products..
To show the color swatches at all times, navigate to assets → theme.css and remove opacity: 0; on line 9616.
To remove the text, you need to find and delete the
element with a class of product-item__swatch-count. Another option would be to hide the element by adding the following code to the end of theme.css:
h5.ff-body.fs-body-50.product-item__swatch-count {
display: none;
}
If the above doesn’t work, try this:
h5.ff-body.fs-body-50.product-item__swatch-count {
display: none !important;
}
Hi @blakelyhi ,
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code just above tag
If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
Makka
Yes, line 9611 in your case! It was listed at 9616 in my browser.

