How to place a custom message under the Add to Cart button?

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:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/styles.css->paste below code at the bottom of the file:
#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!