How can I alter the button text colour in my theme?

How can I change the button text colour for my theme? I believe my Shopify theme ID is 793.

The button text colour is dark blue when unhovered but I’d like it to be my theme’s white colour.

Hi @KyleTShea ,

You can change button text color from Shopify admin > Online store > Themes > click Customize button > Theme Settings > Colors

@KyleTShea Please go to assets/theme.css and paste below css at bottom of file.

.slide-text .slide-text-heading:last-child, .slide-text .slide-text-subheading:last-child, .slide-text .button:last-child
{
color: #fff !important;
}
1 Like

That did it, thanks!