On my blog page my thumbnail/ featured image isnt showing

On my blog page my thumbnail/ featured image isnt showing. but it shows on the home page which means the images are attached … please how do i fix this .
http://34.125.48.0/index.php/demo-blog/

Hi Abiola,

Thank you for writing in, I believe you added this custom CSS to Theme Options > CSS to remove the featured image on top of the posts page.

.post .entry-featured {
    display: none;
}

If so, please update that to this code below so it does not affect your blog index page.

.single-post .entry-featured {
    display: none;
}

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.