This is not actually problem of Jetpack but of the size images you are uploading, which are too small for a full-width page template.
Images are being slotted into display areas well beyond 900 pixels wide and being displayed/stretched to 100% within those containers.
On my 1920 pixel wide monitor image IMG_9317.jpg (1000 px wide) is being stretched to 1200 px – so it ends up looking blurry
WordPress actually delivers and displays different size versions of each photo depending on screen width. The 600 pixel versions are for smaller screen width. If you right click an image in Chrome and select Inspect you will see the following code for the image.
<img srcset="https://i2.wp.com/jgoldsteinarchitect.com/newsite/wp-content/uploads/2020/12/IMG_9317.jpg?strip=info&w=600&ssl=1 600w,https://i2.wp.com/jgoldsteinarchitect.com/newsite/wp-content/uploads/2020/12/IMG_9317.jpg?strip=info&w=667&ssl=1 667w" alt="" data-height="667" data-id="569" data-link="https://jgoldsteinarchitect.com/newsite/projects/acadia-view-house/img_9317/" data-url="https://jgoldsteinarchitect.com/newsite/wp-content/uploads/2020/12/IMG_9317.jpg" data-width="1000" src="https://i2.wp.com/jgoldsteinarchitect.com/newsite/wp-content/uploads/2020/12/IMG_9317.jpg?ssl=1" layout="responsive">
srcset= are the smaller versions and src= is the full size, which will display if the area is big enough. As mentioned your problem is the image at 1000 px wide is too small for the 1200 display area on a big screen)
Solutions:
1. change the page template you are using just for that page or for the whole website – not full width as you currently have. In page edit – right side – under Page Attributes try out different Templates you may have with your theme.
or
2. Change the max width of the tiled gallery via css
.wp-block-jetpack-tiled-gallery {
max-width: 1200px;
}
or
3. They are lovely photos – upload 2000px wide (or more) versions of all – let WordPress deliver the size accordingly via srcset= as it does. Turn on “Display images in a full-screen carousel gallery” in Jetpack settings/Writing/Media and give your viewers the opportunity to click on them for full screen carousel gallery viewing. This would be my preference.
While most internet viewing is on mobile devices where the issue you mentioned won’t really be a problem, be aware people are buying 4k monitors for desktops now so the full width template blurry image thing will be far more pronounced than what is seen on a 1920×1080 monitor. With that in mind I suggest you still define a max-width for the tiled gallery.
-
This reply was modified 3 years, 11 months ago by NightL.