Change to Fixed Background image

  • Unknown's avatar

    How do I make my background image fixed while I scroll?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello,
    You can do that by editing this CSS code:

    body.custom-background {
        background-image: url(https://akusikablog.files.wordpress.com/2016/11/nov.jpg);
        background-position: left top;
        background-size: auto;
        background-repeat: repeat;
        background-attachment: scroll;
    }

    to this:

    body.custom-background {
        background-image: url(https://akusikablog.files.wordpress.com/2016/11/nov.jpg);
        background-position: left top;
        background-size: auto;
        background-repeat: repeat;
        background-attachment: fixed;
    }

    Notice the “background-attachment” CSS property being changed from scroll to fixed, this should keep the background image on your site from scrolling.

    Hope this helps :)

  • Unknown's avatar
  • The topic ‘Change to Fixed Background image’ is closed to new replies.