Hello There,
Thanks for updating in!
Do you want something like this?
If that is the case, please do the following:
1.) Please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
/* Blog Custom banner */
.blog .backstretch {
display: none;
}
.blog {
background-image: url(http://hnmcsconcept.com/wp-content/uploads/2018/04/2018_04_19_News-Background_Stars_1.jpg);
background-size: cover;
background-position: bottom center;
}
2.) And then please add the following code in your child theme’s functions.php file
// Add custom blog banner for Integrity blog index
// =============================================================================
function add_blog_banner(){ ?>
<?php if ( is_home() ) : ?>
<div class="custom-banner x-container max width mtm">
<img src="http://hnmcsconcept.com/wp-content/uploads/2018/04/2018_04_16_The-Stargazer_Header_1920_1.jpg" alt="custom banner">
</div>
<?php endif; ?>
<?php }
add_action('x_before_view_integrity__landmark-header', 'add_blog_banner');
// =============================================================================
We would loved to know if this has work for you. Thank you.