I've successfully implemented a background image on the left side of the website, however, I'm facing difficulty in replicating the same effect on the right side of the webpage.
<style>
body {
background-image: url('background.png');
background-size: 950px;
background-repeat: repeat-y;
}
</style>
I've attempted to duplicate the image and position it on the right side, but unfortunately, that caused the background image to shift towards the center instead. Any suggestions on how to resolve this issue would be greatly appreciated.