How do I edit the black button "Buy it now" to "Köp nu", so it looks exactly the same as the other?

How do I edit the black button “Buy it now” to “Köp nu”, so it looks exactly the same as the other?

My website: https://kryddsortimentet.se/products/smaklokens-grillmastare-presentset

Password: Krydda123

KidsOneStore: https://kidsonestore.se/products/lundby-dockset-nikki

1 Like

Hi @Williamtommy ,

Go to your Shopify Admin Panel.

Navigate to Online Store → Themes.

Click on Edit Code (not Customize).

Open the theme.liquid file (found inside the Layout folder).

Scroll down and paste the code just before the tag:


Hi @Williamtommy

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 only screen and (min-width: 466px){
.product-form__payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
}

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