Somewhere along making edits, the layout of this page has ended up with the boxes mis-aligned - https://canons.com/our-products-bespoke-services/
Any advice/help on how to fix this is appreciated. Thank you.
Tried re-adjusting the padding between images but to no avail.
Since you don't provide any code, I'm not sure what exactly the issue is. But from inspecting on your website, I see that these picture boxes are grouped per column by a
divwith the class name ofwp-block-columnsand you're using flexbox on it. So I'm guessing that the CSS code look something like:So I guess what you can do is to apply
flex-basisto its children such as:This means that all the children of
.wp-block-columnswill be divided evenly, so it should align your picture boxes.