Afternoon,
I’m hoping there’s a way to add the text “Per Month” at the end of price of a product, which will also display throughout collections etc too.
Website: www.railtimes.live
Any help would be much appreciated.
Thanks again,
Afternoon,
I’m hoping there’s a way to add the text “Per Month” at the end of price of a product, which will also display throughout collections etc too.
Website: www.railtimes.live
Any help would be much appreciated.
Thanks again,
Let try to add this Custom CSS code:
.product-price-container .amount,
.product_after_title .amount {
position: relative;
}
.product-price-container .amount::after,
.product_after_title .amount::after {
content: "/month";
position: absolute;
left: 100%;
}
The result:
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file app.css and add this code at the end of the file
span.amount:after {
content: '/month';
}
Result
Best,
DaisyVo
Hello @railtimeslive
.product-price-container .price ins .amount::after {
content: " Per Month";
font-size: 90%;
color: #444;
margin-left: 4px;
}