• Resolved colterw

    (@colterw)


    Hi,

    I am using this theme for my new podcast website. I really like it. My one issue is that I would like to have a featured image at the top of my home page like your rocket image. But then the rest of my page’s main content would be the latest posts to my blog. How do I do that?

    • This topic was modified 4 years, 8 months ago by colterw.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author Greenlet Team

    (@greenlet)

    Hi, Apologies for the delay. We genuinely missed this section of www.remarpro.com.
    This feature is not available via backend settings at the moment but definitely will add it to our roadmap.
    Currently, you can achieve this by adding the following code to your child theme or custom plugin:

    add_action('greenlet_after_header', function () {
    	if ( is_home() ) { ?>
    		<div class="banner">
    			<img src="myimage.jpg" alt="My Image">
    		</div>
    <?php } } );

    Please let us know if that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘How to get the full width header image when latest posts are the main content’ is closed to new replies.