How do I get the add to cart and the buy button beside each other and edit "Buy it now" to "Köp nu"?

Topic summary

A user seeks to modify their Shopify product page layout and button text:

Primary Goals:

  • Position “Add to Cart” and “Buy” buttons side-by-side (currently stacked vertically)
  • Change “Buy it now” button text to Swedish “Köp nu”
  • Achieve a layout similar to a reference store (Kids One Store)

Provided Solution:
A community member offers a partial CSS fix for the text translation:

  • Navigate to theme.css in the code editor
  • Add CSS that hides the original button text and replaces it with “Köp nu” using the :after pseudo-element
  • Includes a screenshot showing the text change result

Current Status:
The solution addresses only the text translation requirement. The horizontal button alignment issue remains unresolved, as the provided code doesn’t modify the layout structure. The user included comparison screenshots showing their current vertical layout versus the desired side-by-side arrangement.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

How do I move the add to cart and buy button beside each other and edit “Buy it now” to “Köp nu”? Similar as Kids One Store? Please help!

My Website: https://dhkvex-ak.myshopify.com/products/widowmakers-zombie-bacon
Kids One Store: https://kidsonestore.se/products/kavat-vemdalen-vinterkanga-brown?pr_prod_strat=e5_desc&pr_rec_id=c6…

Hi @OneCap

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file

button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
    font-size: 0 !important;
}

button.shopify-payment-button__button.shopify-payment-button__button--unbranded:after {
    content: "Köp nu" !important;
    font-size: 16px !important;
}

Result

Best,

Daisy