Hello @sajiddesigner,
I copied the code as given by you in functions.php at the bottom as you mentioned. Simply added my img link in between. But nothing changes on the home page.
My guess is that a page qualifies as homepage or front page when you select ‘Homepage’ under ‘Template’ option while adding new page in WordPress backend?
function storefront_add_bottombar() {
if(is_home()||is_front_page()){
?>
<div id="strip">
<div class="col-full">
<img width="700" height="400" src="https://localhost/soulcurry/wp-content/uploads/2015/12/neosans_lc_left-indent_cropped.jpg" class="site-banner attachment-full" alt="Site Banner" data-size="full" itemprop="banner">
</div>
</div>
<?php
}
}
add_action( 'storefront_before_content', 'storefront_add_bottombar' );
Sorry can’t give any link to my site. It’s on localhost.