How can I add the below message under the Add to Cart button on all pages? Site is https://www.ranchmate.com/ using Minimal theme.
PLEASE NOTE: DUE TO SUPPLY CHAIN ISSUES, DELIVERY ON SOME ITEMS MAY TAKE UP TO TWO WEEKS FROM THE TIME OF PURCHASE.
How can I add the below message under the Add to Cart button on all pages? Site is https://www.ranchmate.com/ using Minimal theme.
PLEASE NOTE: DUE TO SUPPLY CHAIN ISSUES, DELIVERY ON SOME ITEMS MAY TAKE UP TO TWO WEEKS FROM THE TIME OF PURCHASE.
Hi @jnelson513 ,
You can follow the instruction below:
#add-item-form .purchase:after {
content: "DUE TO SUPPLY CHAIN ISSUES, DELIVERY ON SOME ITEMS MAY TAKE UP TO TWO WEEKS FROM THE TIME OF PURCHASE.";
display: block;
margin-top: 20px;
font-size: 11px;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Perfect. Thank you!