Hey @roy1jones,
It’s because of your custom width. When you turn the Classic Image element into a link, you’re applying the custom width to the link or anchor tag and not the image itself and also you have applied the man
class to your element. But, even without that class, out of the box, the browser applies 0px margin to elements so it won’t get centered even if you have set the column text alignment to center.
To center it, you must remove the man
class and add margin: 0 auto
to your inline CSS.

The image also are not in proportion because you’re not using a square image. Setting 100px width and height is not a good solution because you’re actually distorting the image. And, it won’t work when you enable the link because the size is applied to the link and not the image.
Hope that helps.