How to show a post image centered & Portfolio Page is missing in Dashboard

Hi guys,

I already search but what I was looking for did not work out.
My featured post image is shown way to big so I created a picture with 500x 800px. Now the image is not shown centered anymore. It is always on the left what looks stupid.
In the custom code I already used the text-align:center but this did not work. Even the version with left: 50% did not work out.

Find here the page:

And another problem is, that I do not have the portfolio menue anymore in my dashboard. What is the reason for that?

Hi Kris,

A small featured image should be centered using this code:

.single-post .entry-thumb {
    text-align: center;
}

If it does not, there might be an issue with the CSS code that you have in the Global CSS such as some CSS syntax error that is stopping the CSS code you are adding to work as expected.

To verify that, please copy all the codes that are in the Global CSS and paste it here.

It should provide some information if there are any CSS error that is causing the issue that you have to fix so that the CSS codes will work.

I could provide a more specific suggestion based on your setup but the link you provided goes to a 404 page.

Kindly make sure you have updated both X and Cornerstone to the latest version to avoid compatibility issues.

Hope this helps.

Hi Jade,

thanks for getting back to me.

Please find the page here:

It did not work with the centered post entry.

Regarding the other problem with the Portofilio Menue. I use the latest versions.

Hi @KrisPauli85,

Please update the previous CSS to this:

.single-post .entry-thumb {
    text-align: center;
    margin: 0 auto;
    display: block;
}

Hope it helps :slight_smile:

Worked perfectly! Thanks Thai

You’re always welcome @KrisPauli85!

Cheers.

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