Knowledgebase: Designing my Site
How to remove grayscale filter from image banners
Posted by George Moudatsakis on 31 August 2020 02:27 PM

You can remove the grayscale filter in custom_overrides.html.

The full path for the file is httpdocs/content/skins/<skin_name>/custom_overrides.html

.category-banner{ldelim}
    -webkit-filter: none !important;
    filter: none !important;
{rdelim}
.category-banner.with-bg:before{ldelim}
    background-color: transparent !important;
{rdelim}

(0 vote(s))
Helpful
Not helpful