How to Center Featured Image on Blog Index Page

Hello,
I can’t seem to identify which css class is controlling the position of the Featured Image/ .entry-thumb. I’d really like it to be centered instead of floating left.
What CSS can I add to get these to center?

http://dev.thehelpfulmarketer.com/blog/

Thank you!

Hello @a_buzon,

Thanks for asking. :slight_smile:

You can add following CSS X > Theme Options > CSS to centre align featured image on blog page:

.blog .entry-featured {
    margin: 10px auto;
    display: block;
}

Thanks.

@Prasant…
I :heart: you.

Thank you!