By Paul van der Stelt on Friday, 17 January 2014
Posted in Technical Issues
Replies 1
Likes 0
Views 495
Votes 0
Hi,

I imported more than 2K Joomla articles. Most of the articles have an image. The images were resized by a setting in Joomla.

So my problem now is that all images are shown with their original sizes. I already checked setting -> media, but I have the impression the setting are for new images.

Any suggestions?

Regards,
Paul
Hello Paul,

We can't actually resize the image because those images that you inserted into your articles are being stored in the content itself. What you can do however is to use CSS to resize the image,


#ezblog-body .blog-text img, #ezblog-body .blog-content img
{
max-width: 300px !important;
}


The code above ensures that all images has a maximum of 300px in width.
·
Friday, 17 January 2014 22:51
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post