Resize Featured Image in posts

Hi,

I am trying to get this post:
http://concordportal.staging.wpengine.com/marilyn-manson-heaven-upside-down/
I will provide login info privately.

to size more like this:

The featured image is too large, also how do I bring back the forward/backward arrows?

Thanks!

Hi there,

The difference between 2 is the stack that they are used in. The old website uses the Ethos stack but the new one uses the Integrity stack. To change the stack you can go to Pro > Launch > Theme Options and the first option is called STACK which you can choose the stack you want.

If you want to keep the integrity stack instead of the Ethos then kindly add the CSS code below to Pro > Launch > Theme Options > CSS to have a somewhat similar view:

.single-post .entry-thumb {
    background-color: transparent;
}

.single-post .entry-thumb img {
    min-width: auto;
    margin: auto;
    display: block;
}

If you do not want the image to be centered remove this portion of the code:

    margin: auto;
    display: block;

Thank you.

1 Like

Thanks, I added the code and nothing changed. Can you please take a look?

Thanks

Hi there,

The code that @christopher.amirian provided should work if there is no CSS error in the codes you have in the custom CSS panel.

Kindly copy the entire code here and it should give you some information if you have any CSS error.

Let us know how it goes.

Here is the error I get, see screenshot.
Thanks

I went back to Ethos. I should note that the css changes would not reflect in global but will work per page. Kinda weird

Hi there,

There must be some CSS error in the CSS codes that are in the global CSS such as incorrect pairing of { } in CSS block.

Try using the tool that I have provided previously and it will point you to the errors if there are any. And from there, you can apply the fix to your current CSS code.

Hope this helps.

Thanks, I will check that out.

You’re welcome.

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