I need assistance with making my footer background image responsive. Currently, the image is displaying correctly on small screens, but on larger screens it is only centered with empty space on both sides, which is not ideal.
Below is the CSS code I have used to set the background image of the footer:
.footer-shadow {
position:relative;
height: 237px;
margin-top:0px;
width: 100%;
background: url('../img/new_images/footer-bg.png') center center no-repeat;
background-size: contain;
color: gray;
}
I am looking for a solution to make the footer responsive so that the image adjusts properly on screens of all sizes.
Any help would be greatly appreciated. Thank you!