I am using an image as a background for a class on the left side with a white background. The width of the class is 1368px and the image size is 392px by 600px. I want to fix this image on the left side of the class, making it responsive. Even though I have set the image to be on the left side, it does not display correctly on a responsive page, especially on screens less than 700px in size. How can I solve this issue? Please assist me. Thank you.
.about-middle {
width: 100%;
margin: 0 auto;
max-width: 1368px;
background: url(../images/right-side.jpg) left #fff;
overflow: auto;
max-height: 603px;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
This is the code I am using