Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @smbwebservices!

    The blog posts page on Sela isn’t built to display the featured image – only normal static pages do that 🙂

    Perhaps this page was showing it’s featured image before you marked it as your posts page?

    Thread Starter smbwebservices

    (@smbwebservices)

    Any possible tweak to the code we could do?

    The fastest/easiest way, since this is only on a single page (the blog page) would probably be to use some CSS:

    /*Hide logo on blog page*/
    .blog .site-logo {
        visibility: hidden;
    }
    
    /*set site branding background on blog page*/
    .blog .site-branding {
        background: url(URL OF YOUR IMAGE);
        background-size: cover;
    }

    In the second style, you’d need to replace URL OF YOUR IMAGE with… well, the URL of your image 🙂

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

The topic ‘Featured Image Disappeared’ is closed to new replies.