• Hi. How do I remove the header image that is showing up on all of my other pages? I have the Agama theme. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Under the header.php file change the following:

    <div class="head-img">
    [.......]
    </div>

    to

    <?php if( is_home () || is_front_page() ) :?>
    <div class="head-img">
    [...]
    </div>
    <?php endif;?>

    It’s worked for others, it is worth a try. Just be sure to save the original in case it does not work for yours.

    Thread Starter dynamicrei

    (@dynamicrei)

    Thank you! I will try it.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove header image from all other pages’ is closed to new replies.