How can I change the text and button colors in my Dawn theme banner?

So I want to change the colors of the text and the shop now button within my image banner. I am using the dawn theme. If anyone is able to help me with the coding I will be extremely happy and eternally grateful :grinning_face_with_smiling_eyes:

1 Like

@UsefulLifeProdu

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

1 Like

Thank you KetanKumar,

my site URL is www.usefullifeproducts.com

1 Like

@UsefulLifeProdu , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > base**.css** and paste this at the bottom of the file:
.banner__heading{
    color: #ccc !important;
}

.banner__buttons a{
    background: #fff !important;
    color: #000 !important;
}

#ccc = text color (HEX)
#fff = button background color
#000 = button text color

Kind regards,
Diego

@UsefulLifeProdu

thanks for url can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-image-banner.css->paste below code at the bottom of the file.
.banner--desktop-transparent .button--secondary {
background: #c12226 !important;
}
.banner__heading {
color: #000 !important;
text-shadow: 0px 0px 10px #fff !important;
}