Tagged: enfold
Hi – I need some guidance on how to add text after the calculated price and add some generic disclaimer text under the total price.
As a picture is worth a thousand words, I’ve attached a jpg that easily explains what I am trying to do.
Thanks!
John
Hey John!
I don’t see the attached image, also a link to your shop would be helpful.
Cheers!
Josue
Hey!
Try adding this code to the Quick CSS:
.single_variation .price .amount:after {
content: " (Per Person)";
}
.variations_button:after {
content: "some generic text";
display: block;
clear: both;
text-align: center;
padding: 10px 0;
}
Change some-generic-text by the text of your preference.
Cheers!
Josue
Never too smart to learn something new… I have NEVER seen or used the :after option before, this opens up a whole new world!
Thanks!