HOW TO CHANGE TEXT COLOR IN OUR SHOPIFY WEBSITE

I PUT A VIDEO AS BACKGROUND IN MY STORE AND NOW I WANT TO CHANGE THE TEXT COLOR IN MY CONTACT INFORMATION PAGE, TERMS AND CONDITION PAGE, AND IN OTHER POLICY PAGES TOO, I HAVE BEEN STRUGGLEING TO DO THAT IN THOSE SPECIFIC PAGES AND NEED HELP TO CLEAR THE ISSUE

THIS IS THE ISSUE

MY STORE LINK: https://xqehfi-zu.myshopify.com/

Hi @logiclayer ,

kindly provide your store URL please and if it is password protected, please share the password as well.Thanks

STORE LINK : https://xqehfi-zu.myshopify.com/

PASS: media

@websensepro what is the password to view page?

pass: media

@logiclayer please add this css to the very end of your base.css file and check,
Shopify Admin → Online Store ->Theme → Edit code → base.css

h1.main-page-title.page-title {color: #fff;}

#shopify-section-template--18534803734703__main .rte{color: #fff;}

didnt worked

Hi @logiclayer ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
h1, h2, p, li{
  color: white !important;
}

Thanks!

Please paste the following code in the end of base.css file.

.main-page-title.page-title.h0.scroll-trigger.animate--fade-in {
  color: white !important;
}
.rte.scroll-trigger.animate--slide-in p {
  color: white !important;
}
.shopify-policy__title h1 {
  color: white !important;
}
.shopify-policy__body .rte {
  color: white !important;
}

Results:

@logiclayer you can add !important and check

h1.main-page-title.page-title {color: #fff !important;}

#shopify-section-template--18534803734703__main .rte{color: #fff !important;}