Need Help Changing Color of CTA Button in CSS

I have attached two screenshots to help with this question.

I am using a landing page the company bought off of Marketplace and I am wanting to change the CTA button. The CTA button was created by code because it’s used to jump down to the form at the bottom of the page.

37103i277204EB912BE4F8.PNG

What do I need to look for in the css to change the color? I have tried searching cta_button but multiple options appear and none have a hex code.

I know this may be a silly question for this community but any help is appreciated!

Hi @JessieBumgarner. If you’re just trying to find where the colour is applied in CSS, please add a link to the page and I can have a look for you.

If you want to change the colour of this specific button you could edit the button with inline css like this:

<a href="#demo" class="cta_button" rel="noopener" style="background-color: [hex code]">Get Free Demo</a>

Or a stylesheet you could do this:

.cta_button[href="#demo"] {
 background-color: [hex code];
}

To change the text color you can add to either of the above

color: [hex code]

Thank you so much @piersg ! I woke up this morning and thought of doing that and it worked!