Hello team, I am trying to add some animation on the stock icon dot such as pulse, but need some help from you guys.
What I am trying to archive?
On the single page (see website-link below) you see the following stock status ” • 1 in stock” in green colored.
The CSS Pulse effect sample can be find here: https://codepen.io/FlorinPop17/pen/drJJzK
How can I do this for my template?
I am trying the following CSS but ain’t working:
p.stock.wd-style-bordered span:before {
content: "";
display: inline-block;
margin-inline-end: 8px;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #85B951;
vertical-align: baseline;
}
p.stock.wd-style-bordered span::before {
background-color: #00A341 !important;
}
.theme-woodmart .stock.wd-style-default.in-stock:before {
animation: inventory-pulse 2s linear infinite;
}
Looking forward for your support.