Hello forum
How can i resize posts images because when you open the post their size is so big that distracts the reader
Hey there
You can change the size of the main image in Casper with a bit of CSS in the Code Injection option within the admin:
<style>
.post-full-image img {
max-height: 50vh;
}
</style>
Have a play with the number and see what suits you best.
Just to check though, are you referring to the image in the admin view? The screenshot attached suggests you are. This can be edited if you have a custom install of Ghost but it might be better to keep it that height just so people can fully see what image has been uploaded to the post 
I mean the one on the post page its very big
This doesnât seem to work anymore. Iâm still looking to resize the main images in the casper theme.
(Also, I have added google analytics in the code injection. Not sure if that has anything to do with the solution not working.)
Hey @SkrimSkram, my solution is from a couple of years ago and since then the default Casper theme has changed. Youâll need to use a different class selector to grab the feature image. You can get the class by viewing one of your posts with a feature image and using the browser inspector
Hey @DavidDarnes thanks for the reply. Iâm not sure I fully understand what you mean by âclass selectorâ. I am non-technical. I can right-click and âview sourceâ or âinspect elementâ in the browser. But Iâm not certain what I must do after. 
Any help appreciated. Thanks.
@SkrimSkram, in Firefox or Chrome browser you can press F12 key and then CTRL + SHIFT + C or just click with mouse on this icon:
Then you can pick an element from the page and inspect its HTML/CSS.
I can see that the figure class is:
<figure class="article-image">
<img ....
So the Code Injection should look like:
<style>
.article-image img {
max-height: 60vh;
width: auto !important;
}
</style>
Here is the result:
If you want article image to have the same width as article title or article text, then you can use:
<style>
.gh-canvas .article-image {
grid-column: main-start/main-end !important;
}
</style>
Really nicely done @JavowiecPL, thanks for the detailed reply. Sorry for not being very clear @SkrimSkram, hopefully @JavowiecPL explainer will get you there 
@JavowiecPL Man, thanks so much for such a lovely detailed reply!! Exactly what I was looking forđđ˝
@DavidDarnes No worries David, thanks again 
Hi all: so glad I found this post. I am using the Casper theme (brand new to Ghost) â and I tried the above snippet in the code injection, header:
.gh-canvas .article-image { grid-column: main-start/main-end !important; }But the image does not seem to resize. To be exact â I am uploading a post image by going to Settings inside the post page, and clicking upload image. This is how large it looks.
https://www.vivaagile.com/gettingnaked/
Appreciate the help.
Thank you.
Cheers.
Hi all:
Wondering if anyone can suggest how to fix this? Thank you.
Cheers.
Any ideas about this issue?