Re: 'Buy it now button' font size

Solved

How can I adjust only the 'buy it now' button font size?

Pam9
Explorer
104 0 15

Hey, I changed the font size of the body and the 'buy it now' button size changed as well. How can I modify the font size of this button only?

 

URL: https://www.bafaluc.com

Password: sawbaw

Accepted Solution (1)
AvadaCommerce
Shopify Partner
3879 839 982

This is an accepted solution.

Hi @Pam9 ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css->paste below code at the bottom of the file:

.shopify-payment-button__button--unbranded {
    font-size: 15px !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned

View solution in original post

Replies 3 (3)

chanteleo
Excursionist
28 1 11

Try this on the theme.css

 

.shopify-payment-button__button--unbranded {

font-size: 20px;

text-transform: uppercase;

padding: 0;

}

AvadaCommerce
Shopify Partner
3879 839 982

This is an accepted solution.

Hi @Pam9 ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css->paste below code at the bottom of the file:

.shopify-payment-button__button--unbranded {
    font-size: 15px !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned
Pam9
Explorer
104 0 15

It works. Thank you!