Left align post feature image on index page

I’m working on a site on a local machine, so I can’t post a link :confused:

I can’t figure out how to get the post feature image to left align on the category index page even though it is on the individual post pages. Here’s a screenshot of the index page and inspect window

Here’s the custom CSS I have in the Theme Options:

Thanks!

Hey Lance,

Please find this CSS code and remove it:

.blog .entry-featured {
    margin: 0, auto;
}

Then edit this code:

.blog .entry-featured {
    width: 50%;
    margin: 0 auto;
    display: none;
    box-shadow: none;
}

Then change it to:

.blog .entry-featured {
    width: 50%;
    margin: 0;
    display: none;
    box-shadow: none;
}

You may also try adding float: left; to the code above:

Here are some related links for the suggestions above for further reading:

Hope this helps.

It did. Thanks Jade!

You are most welcome!

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