Problem with size of add to cart button

Topic summary

A user seeks help resizing the “add to cart” button and product price on their Shopify store (www.xmine23.com), which uses the Local by Crown theme.

Solution provided:

  • Add custom CSS code to theme.css file
  • Target .shopify-payment-button__button for button sizing
  • Use font-size: 2.5rem !important and width: 50% !important properties
  • Apply similar styling to .product-text.product-price--original for price adjustments

Outcome: The original poster confirmed the solution worked successfully.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

Hi @vivvy1522 , go to theme.css and add the following code :

.shopify-payment-button__button {
   width:50% !important;
}

.product-text .product-price--original {
   font-size:2.5rem !important;
}
1 Like