Hey everyone,
I’m using the Narrative theme (site is currently unpublished).
I’m trying to change the font color of the message after submission via the Contact Form.
It’s currently bright green, and I’d like it to be black.
I’ve seen in other threads that it’s located in the theme liquid file, but I don’t want to mess anything up.
Could someone please provide the necessary code and tell me where to place it?
Thank you!
Please provide preview url
Hello,
Add this css in theme.scss.liquid
You can find this file under ‘Assets’ and you have to place this css in bottom.
.contact-form .form-success {
color: #000;
}
Thanks
@ReliantStride
Please share your website URL so we can assist you. If it’s unpublished you can still share the URL privately following this quick tutorial.
That worked perfectly–thank you so much!
@Guleria Thank you–that worked like a charm.