I was wondering if there's a way to change how vertical images are displayed. The problem is that they're made to be as wide as possible, even if it's wider than the original picture. It was particularly a problem for this post: http://johnnysullivan.tumblr.com/post/579354931/antilockebrakes. In that post, the picture's huge, but if you click on it you see that the original picture is nowhere near that big. I would prefer it not to stretch pictures out like that. Is there a way to do that?
It is sort of possible. But you can’t specify that it only happens on vertical images. I made the decision that it was important for images to all be 500px wide so that they all looked consistant and didn’t break the layout. For example, there’s plenty of almost–500px–images that look terrible in the layout if they’re not stretched. Like this for example.
You end up with white strips on either side or white space to the right, depending on whether you center the image or not. This is what that post you mentioned looks like un-stretched. Potentially better than a mega-pixely image, but still not great.
It’s a trade off. I’m more likely to post images in the 400-500 range that look fine stretched a small amount than I am to post a crappy small images. So I did it that way. If you’re going to post heaps of small images then you might want to turn it off, but do so knowing it’ll probably affect heaps of other images.
To do it, put this in Custom CSS:
.image {
text-align: center;
}
.image img {
min-width: 5px;
}