How can I add a delivery date text below the buy now button?

Hello everybody, I am trying to put the text “Order today and get it tomorrow” directly below the buy now button on all of my product pages in the same font as the other text on my theme. Could anyone help me? My site is: phonesimpel.nl. The picture below shows a product page and I want the text to be above the share icons and below the buy now button! Thankyou very much for your help!

1 Like

Hi @niels_127 ,

Is this what you mean?

This is the code.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.product-single__add-to-cart:after {
    content: "Order today and get it tomorrow"; 
}

Let me know if youll like more changes.

I hope it help.

Yes thankyou so much!