Make 'add to bag' bold and larger in size

Trying to make the add ro bag font larger and bold but having no look using code reccomended to others.

Fashionopolism theme

Thanks

1 Like

Sorry!

Trying to make the ā€˜add to bag’ font on product pages larger and bold. Thanks (fashionopolism theme)

Can you provide a link to your website?

HI @Rhian_Jones

Do you mean this one?

If it is check this one.

From your Shopify admin dashboard, click on ā€œOnline Storeā€ and then ā€œThemesā€.

Find the theme that you want to edit and click on ā€œActionsā€ and then ā€œEdit codeā€.

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:

input#addToCart {
    font-size: 20px;
    font-weight: 900;
}

And Save.

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

1 Like

Hi

Please can you also give me a code to do the same for the ā€˜check out’ button in the shopping cart.

Thanks

1 Like

Yep sure, Replace with this code.

.shopify-payment-button__button, input#addToCart {
    font-size: 20px !important;
    font-weight: 900;
}

And Save.

Result:

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

Hi

Thats not what i mean. I dont want to change the previous code. I want to change a completely different button.

I want the button shown on the cart drawer/cart page that says ā€˜checkout’ to be a bold and larger sized font- the same as the add to cart.

Thanks