I am trying to customize the CTA to reflect the color background and padding as the client’s page. I have gone ahead and embedded the following code in answers.scss but the change has not reflected in the front end yet.
.Hitchhiker-cta {
color: black;
background-color: #ffb500;
padding: 10px;
hey @Sarah_Bokhari congrats on your first post and welcome to the community!
You’re on the right track. As discussed, you can try placing:
.Answers
.HitchhikerCTA {
color: white;
background-color: #4f2c1d;
padding: 10px;
}
at the end of your SCSS file, outside of any other CSS you have. This will produce your desired result, which I’ve verified in your live preview.
Enjoy your demo later today!
Sam