On my home page, the first image does not adjust to screens above 1080p. On 2560 x 1440 there is a large blue area to the right of the photo. What am I missing? forgemountainphoto.com
It’s because the image resolution is 2048px so it won’t fit on larger screen than 2048px unless you set 100% width. You can use width: 100%; to the Style field of the image.
You can also define this for larger screens as well by adding this under Custom > CSS in the Customizer. :
@media only screen and (min-width: 2000px) {
.x-img {
width: 100%;
}
}