Best way to remove login_fade.png?

Permalink
Hey all,

Am customizing a login page, and wondering if anyone knows the best way to remove the login_fade.png that provides the dark fade at the top of the page. It doesn't have a class on it so hiding via css doesn't work very well.

Any thoughts appreciated.

juddc
 
ob7dev replied on at Permalink Reply
ob7dev
The image is inserted via the file /concrete/themes/concrete/background_image.php.

So you could remove it there.
juddc replied on at Permalink Reply
juddc
Was hoping there was a way to stay out of the /concrete directory...
ob7dev replied on at Permalink Reply
ob7dev
Ok, well since it appears to be the first element in the body area, you could reference it by its index:
document.body.childNodes[0].remove();