Hello
I am using the Broadcast Theme and i would like my collection grid to look like this
button for price
can anyone help?
Hello
I am using the Broadcast Theme and i would like my collection grid to look like this
button for price
can anyone help?
Hi @TBS2023
let try to add this custom css code:
.product-item__price {
border: 1px solid;
padding: 10px;
position: relative;
}
.product-item__price::after{
content: "→";
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
font-size: 17px;
}