Changing photo size on Tiny Theme

I’m trying to find where in the Tiny Theme CSS it dictates the size (as in height/width) of photos in posts; I want to change it so they’re not automatically the full width of the post, but I’m having trouble figuring out where this is tucked away. Anyone know?

(I know I can manually add an image style html tag each time I post a photo, but if possible I’d like to change the default.)

Thanks!

Did you find an answer to your question? I am on the mnml theme and am trying to do the same.

The css needed to change the img sizing can be derived from the following:

article img, .e-content img, .p-summary img {
    width: 100%;
}

That will change all images across the site except for the logo and comment avatars.

1 Like