change button style from outline to solid red

Hi,

I’m trying to change the buy button styles in the ‘Text columns and images’ section.

I have seen similar posts to this, but only to add some code to the theme.scss.liquid and it did not work

For some reason the buy buttons in this section are red outline with red words, not same as rest of site.

The buy buttons on the rest of the site are solid red with white words.

I want the whole site to be uniform solid red buy buttons with white words.

Can someone please let me know how/where I can change this?

thanks!

Hello,

can you please share your store’s URL?

Yes thank you

https://koopeh-designs-inc.myshopify.com

pass: wheiff

You can add the following code at the end of your theme file theme.scss

.btn--secondary {
    border-color: #d5393c;
    color: #fff;
    background-color: #d5393c;

    &:hover {
        border-color: #b52629;
        color: #fff;
        background-color: #b52629;
    }
}

thank you, it worked out great!

Hi, happy that it worked