Okay
  Public Ticket #4412676
transparent header issue
Open

Comments

  • taylorvelehna started the conversation

    Just on my posts (inside my blog page), the header refuses to do the transparent feature. It's the only one that has a white header instead. I tried looking within the Salient -> header navigation section, Salient -> blog, as well as trying to make changes with the individual post page. Nothing seems to work.    

  •  364
    Pat replied

    Hi Taylor,

    Thank you reaching out.

    Try adding this snippet to your child theme's "function.php" file to force the transparent header on all pages:

    add_filter('nectar_activate_transparent_header','salient_child_modify_transparent_nav');
    function salient_child_modify_transparent_nav($bool) {
         return true;
    }

    I hope that helps.


    Best wishes,

    Salient Theme Support