No featured image on Homepage
- The topic ‘No featured image on Homepage’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
The rest of the site works fine, all other pages display the image, but on the homepage it is only showing a black bar.
Feature image is set, but doesn’t show.
The blog I need help with is: (visible only to logged in users)
Hi,
Your blog is currently in Coming Soon mode.
Can you share screenshot, which Featured Image you are referring ?
Thanks
Hi !
The site is online now. Landin page has no feature image, all other sites do …
Thank you !
I’m actually having the same issue, both the landing page and blog post page no longer have a featured image. It seems like the background url for the container
It seems like static pages have the following tag:
<section class="site-hero site-hero-featured-image" style="background-image:url( <url_goes_here> )">
whereas the home page and blog page only have
<section class="site-hero">
I found a small workaround by adding some custom css in the customizer.
.site-hero .site-hero-overlay {
opacity: 0.4;
}
.site-hero-big .site-hero {
height: 600px;
}
section.site-hero:not(.site-hero-featured-image) {
background-image:url( <background_image_url> );
}
This may work for now, but this needs a proper fix.