How do I make the Check Out button into rectangular box? - Publisher Theme

Topic summary

A user seeks help converting their checkout button from rounded to rectangular on a Shopify store using the Publisher theme.

Proposed Solution:

  • Navigate to Online Store → Theme → Edit code
  • Open the theme.liquid file
  • Add custom CSS code before the closing </body> tag
  • The CSS targets button#checkout with border-radius property to remove rounded corners

Status:
The response appears incomplete or corrupted (text contains reversed/garbled characters), making it difficult to verify the exact CSS code provided. The discussion seems to be awaiting confirmation whether the solution worked or requires clarification.

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

URL: https://jsdqft-gs.myshopify.com/cart

Hello @randytheasian

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

button#checkout { border-radius: unset !important; }

RESULT:

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

1 Like