wWAREHOUSE theme buy buttons

Wanting to have my add to cart wider,

not sure why its stuck to only one side, right now using the trial for theme theme still deciging if going to buy but if i cant change this i will switch - link is https://7xh2x3wxivkw6odf-71252148259.shopifypreview.com

Hi @pnsempire

  • Go to your Shopify admin >> Online Store >> Theme Customization

  • Click the dropdown on top and select Product page.

  • In the left sidebar, look for Theme settings or Custom CSS, or click “Add section” or Edit code (if available in trial).

  • If there’s a Custom CSS option (some themes support this), paste the following code:


If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Hi @pnsempire

Try this one.

  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, style.css or theme.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:
@media screen and (min-width: 641px) {
    .product-form__payment-container>* {
        width: calc(100% - 18px) !important;
    }
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!