How do I remove a background image from my website?

Hi everyone,

I was trying to remove the background image on the website, and I’ve checked the previous threads but no luck at all.

It seems like the image appears on each page in whole area.

Please advice how to remove it.

Thanks

Good Afternoon,

Which theme are you currently using?

Can you please share your website URL and storefront password so that I can take a look?

Thank You,

-Justin

Hi Justin

the theme is ‘parallax-2018’

Website is https://lovemidesigns.com/

password: ShopifyCheck

Thanks!

hello @LoveDesigns

please Go to Online Store->Theme->Edit code then go to assets/style.css ->paste below code at the bottom of the file.

#content_wrapper {
    background-image: url('');
}
2 Likes

Please follow the steps:

  • Step 1: Go to Online store > Themes > Actions > Edit code.
  • Step 2: Go to Assets > styles.scss.liquid and paste this at the bottom of the file:
    #content_wrapper {
    background-image: none !important;
    }
    Hope it helps!
1 Like

Thank you!

Both solutions work!