get rid of the color on the bottom of a page

Topic summary

A user is experiencing an unwanted blue color appearing at the bottom of their collections/shop page on their Shopify store using the Origin theme. They clarified this blue section is distinct from the footer itself.

Solution provided:

  • Navigate to Online Store → Edit Code
  • Open the base.css file
  • Add the following CSS code at the bottom:
    #MainContent {background: white !important;}
    
  • Save the changes

This CSS override targets the main content area’s background color and forces it to white, which should eliminate the blue coloring issue.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

On the bottom of my collections/shop page, there is a blue color. It’s not the footer. How do I get rid of it?

I’m using Origin theme and the URL is: https://rescue-haus.com/collections/basics

Thanks in advance!

Hello,

Go to online store and chose edit code

Open the file base.css

Paste the following code at the bottom.

#MainContent {background: white !important;}

Then save.

1 Like