Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Does anyone work with the Impulse 5 theme, who can help me how to improve the sold out and exit labels so that they are more visible to the client, does anyone know how to do it?
Hey @versatilaccesor,
Can you share the link to your store please? Thanks!
Hey @versatilaccesor,
This will create a animation that will slowly flash the sale badge, so it brings attention. Not sure if you will like it.
Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.
<style>
.grid-product__tag {
animation: flash 2s linear infinite !important;
}
@keyframes flash {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
</style>
Screenshot is for reference only, the correct code to paste is the one shown above.
is this an app?
What would improve this? I do not understand much.