How To Change This Text Colour?

Hello, I Want To Change The Text & Icon Colour From Black To White.. I Had Shared The Images And Outlined It With Green Box..

My URL: https://theindianvastr.com/?_ab=0&_fd=0&_sc=1

Hey @Emiway

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

@Emiway thanks for posting here.
please use this style code:

.product button.shopify-payment-button__more-options {
    color: #fff;
}
.collapsible-content .accordion svg path {
    fill: #fff;
}

HI @Emiway You can follow this step to archive your result
Go to online store->edit code-> theme.liquid file and past bellow code inside Style tag

.shopify-payment-button__more-options {
    color: white !important;
}
.accordion .icon-accordion {
    fill: white !important;
}

Hello @Emiway
Go to online store > edit theme code > theme.liquid > put in the below code in theme.liquid file before closing


Hello @Emiway
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the bottom of the file.

.shopify-payment-button__more-options {
color: #fff;
}
.accordion .icon-accordion {
align-self: center;
fill: #fff;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks