How to fix faded text color?

In some sections of my website, such as collapsible content, footers, and headers, the text color is faded (gray) instead of fully black. I’ve tried everything I could to try to fix this issue but nothing works. Thanks.

1 Like

Can you please share your store’s URL?

https://7c82f0.myshopify.com/pages/faq

Can you please share your store’s password as well?

Hello @techwizard0218
your link is password protected

Sure it’s: 0218

Apologies, I removed the password.

Hi @techwizard0218

  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:
.collapse-desc-content {
opacity: inherit !important;
}

1 Like

Thank you so much it solved it! Would I have to paste the same code for the footer and header too?

1 Like

Hi @techwizard0218

  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:

You can use the footer and header CSS.

.list-menu__item--link a {
    color: #000;
}
.footer-block__details-content .list-menu__item--link, .copyright__content a {
    color: #000;
}
.header__menu-item span {
    color: #000;
}
.header__menu-item {
    color: #000;
}

1 Like