Hi @mikkiweb7,
The image is being being cropped because the image is in portrait format, and there is a maximum height set on banner images.
You could resolve this a couple different ways. First, I would recommend centering the background position by adding the following style:
.feature-img.page-banner {
background-position: center center;
}
That will center the image. However, it will still be cropped since you are using a portrait format image. Additionally, you could add the following style:
.feature-img.page-banner {
background-size: contain;
}
Either or both of those styles may give you the look you’re after. I hope this helps. Thanks!