Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End php resize image Re: php resize image

#129339
Jeager
Member

Are you talking about thumbnail re size or the actual image? There are basic options for cropping in the media area if that helps. Would reduce the image file size instead of scaling all of them down. Otherwise you can just put a max-width: ///px and have CSS scale them down. Or rather have the img { max-width: 100%; } and then the container be a max-width: 900px; or whatever, so when you resize the browser the images will still be responsive.

At least I think thats how it would work.