How to center text to "add to cart" button

Hello, I was wondering if it’s possible to center align the "Free shipping to U.S. and Canada" to the “add to cart” button? pic below

website: www.ecogarby.com

password: eco

Hi @Acid2Rain ,

Welcome to the Shopify community. Thanks for asking a good question on community! I’m here to help you.

As I see your query and found I can help you. Please follow the below steps

Steps:

  1. Open the theme editor from backend of the Shopify.

  2. Look for the styles.css file under asset folder.

  3. Copy the below code and paste at the bottom of the styles.css file.

  4. Save the file.

  5. Refresh your screen now.

Note: this code is only for the mobile device if you also need the changes on desktop so it need the custom changes on code. Which you need to hire a Shopify expert.

@media only screen and (max-width: 767px){
    .product-sections .product-text p {
        text-align: center;
    }
}

Thanks

@Aashish_Bhatt thank you!