Changing Button Color for .a href "button"

Hi Everyone,

I am hoping someone could help point me in the right direction. I’m trying to change the background color of this “button” to #1D929C but am struggling to come up with the code because it is an .a not just a .btn. Could someone help me, please?

Thank you!!

URL: https://nactive-lifestyle-apparel.myshopify.com

PW: [email removed]

please add below css code in bottom of assets/theme.css file

.appear-delay-2 a.btn {
background: #1D929C;

}
Thank you.

Hi @senecabryson ,

Go to Assets > theme.css and paste this at the bottom of the file:

.feature-row__text a.btn {
    background: #1D929C;
}

It will help you to change button color only in this section.

Hope it helps!

@LitCommerce @Denishamakwana

Thank you both for your help. I noticed that these changes apply to the class level–is there a way to make the change to the particular element (so that the change only applies to that specific button in a specific section)?

Hi @senecabryson ,

You just need to add section id around it, it will change only for this section. Refer code:

#shopify-section-template--15831039312035__1658152697a03bfd14 .feature-row__text a.btn {
    background: #1D929C;
}

Hope it helps!