Help on Background theme

I’m trying to change the theme of the product page & product list page. I want the background white like the homepage. I’ve googled & used Shopify’s bot & cannot figure it out. I think it’s the collection list & product page

1 Like

Hey @Megistailored

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

Best Regards,
Moeed

Hello! Yes, my shop is www.tailoredbodyjewelry.com

Hey @Megistailored

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 </ body> tag
<style>
.card__information * {
    color: white !important;
}
.card__content:has(.quick-add) {
    background: #191326 !important;
}
</style>

RESULT:

If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

Please add this code to theme.liquid file after <head> and check

{%- if template.name == 'collection' or template.name == 'search' or  template.name == 'product'  -%}
<style>
    body {  background: #fff !important; }
</style>
{%- endif -%}