Q: “How Do I Remove The 50% Shading In The Header?”

On or around line 50 in styles/ng.css, div#titledesc is defined. You may

Recommended

override them in your child theme’s style.css using the following declaration:


#header div#titledesc{
       background: transparent;
}

…or

Not Recommended

remove the lines from styles/ng.css, inside of the div#titledesc declaration:


        background:rgb(0,0,0);
        background:rgba(0,0,0,0.5);
        -ms-filter:alpha(opacity=50);
        filter:alpha(opacity=50);

The Recommended option is upgrade-safe, while the Not Recommended one could be overwritten if you upgrade Elbee Elgee.

Leave a Reply