How to have the thumbnail cropping tool working

You can use this function, for example. Change for your needs and put on yours theme function.php file. add_image_size(‘Special’, 545, 365, true); add_image_size(‘Mobile’, 291, 197, true); add_image_size(‘Ipad’, 217, 147, true); add_image_size(‘Block’, 253, 172, true); add_image_size(‘Single’, 602, 358, true); add_image_size(‘Small’, 75, 49, true); add_image_size(‘Block-height’, 253, 245, true); add_image_size(‘Related’, 183, 124, true); add_image_size(‘Big_one’, 393, 266, true); On … Read more

Hero image cropped at different dimensions

Instead of creating a new image size or uploading a completely different image just for mobile you might want to play around with object-fit and object-position CSS. object-fit and object-position work basically the same as background-size and background-position but instead of being applied to background-image’s only they work on objects like the <img> tag. Use … Read more