• Hello I want to remove the overlay completely from the top header picture. How do I do this?
    I have downloaded the SASS files but don’t know where to find the option to change.
    Thank you for your help,
    Paul

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi ilovebaconmore!

    I took a quick look and what you are looking to remove is found in the ‘Theme Functions’ (functions.php file). Find and remove (or comment out):

    // Remove header rgba filter if user doesn't want it. (Enabled by default)
    if(!$header_filter == 1)
    {
      if(!empty($primary_theme_color))
      {
        echo "
          <style>
            .backdrop{
              background-color: rgba(" . pixel_hunter_hex2rgb($primary_theme_color) .",0.7);
             }
          </style>
        ";
      }
      else
      {
        echo "
          <style>
            .backdrop{
              background-color: rgba(45, 142, 89, 0.7);
             }
          </style>
        ";
      }
    }
    Thread Starter ilovebaconmore

    (@ilovebaconmore)

    Thank you so much, that resolved it. I looked through so many files but had totally skipped that one.

    Thanks again,

    Paul.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove faded overlay from header?’ is closed to new replies.