How do I keep the background image fixed during a page scroll? I have this CSS code, and the image is a background of the body and not <
Just add background-attachment to your code
body { background-position: center; background-image: url(../images/images5.jpg); background-attachment: fixed; }