Aligning images to the center in Recent Posts element

Hi,
I have put the recent posts element on my homepage with three posts underneath. All three images are aligned to the left and I would like them in the center of each box or filling the entire box / container.
Can you help me?
Thanks

Hi @liz80y,

The root cause of the issue are the following CSS:

.page-template-default .entry-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

Please use more specific selector. Like this:

.page-id-6 .entry-wrap { /*Replace 6 with page ID where you want this CSS to work*/
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

Hope this helps.

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