Leave a Reply

1 comment

  1. I would strongly suggest then that you create a child theme. It is really quick (takes less that 5 minutes) and your customizations doesn’t get lost when you update your theme. You just need to copy ‘header.php’ to your child theme to modify. Also create a folder called ‘images’, this is where your custom logo will go. Line 24

    <div class="header section" style="background-image: url(<?php if (get_header_image() != '') : ?><?php header_image(); ?><?php else : ?><?php echo get_template_directory_uri() . '/images/header.jpg'; ?><?php endif; ?>);">
    

    is where the image is called, so you just need to modify that. Remember to change

    get_template_directory_uri() . '/images/header.jpg
    

    to

    get_stylesheet_directory_uri() . '/images/your-image.jpg
    

    I hope this help.