adding background wallpaper

Im trying to add a wallpaper to the mix that will cover and stay the entire background as I scroll down. Unfortunatly the image doesnt seem to repeat or stay as I scroll down. It stays in a fixed position. Can someone give me the proper dimensions settings to create a non-moving background that stays as I scroll down?

  • 343
  • More
Replies (2)
    • Hello Will Roberts !

      Did you try to use the "fixed" variant for the "Background image attachment field"?

      • Try adding this CSS to your template (after saving a backup copy, of course).

        .bx-content-wrapper {

                position: relative;

                /*--- This is where you can change the background to an image ---*/

                background-image:  url("YOUR-IMAGE-URL");

                background-size: cover;

                background-attachment: fixed;

                position: absolute;

                background-repeat: none;

        }

        I am not a professional code writer or CSS user.  I hope this helps!

        Login or Join to comment.