Home › Forums › Back End › php resize image › Re: php resize image
March 22, 2013 at 7:56 am
#129339
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.