Remove background image ONLY on homepage

I am using a background image (set in theme options) for my entire site.
However, I would like to use a different one on the homepage set locally for that page ONLY.
I am sure it is simple, just haven’t figured it out yet.

Ideas, pointers, help (for silly me)…?

Thx

The easiest thing would be adding this Content CSS in while editing your home page:

.backstretch {
    display: none;
}

Or you could put this in the global Theme Options CSS:

.home-page .backstretch {
    display: none;
}

@alexander
You are AWESOME!
Worked perfectly.
Thx

Great! :thumbsup: