Background image but not to repeat when I scroll.

Discussion in 'ColorWay WordPress Theme' started by antoniszou, Jun 15, 2013.

  1. antoniszou

    antoniszou New Member

    Joined:
    Jan 10, 2012
    Messages:
    10
    Likes Received:
    1
    Hello,
    I want to use a picture as background but not to repeat when I scroll.
    I have addded the following code in Styling option but is not working. What is the error?

    html, body {
    background: www.sifidape.gr/wp-content/uploads/2013/06/bg2.jpg no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }
     
    robertburney likes this.
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    You are using wrong code.
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    html, body {
    background: url(http://www.sifidape.gr/wp-content/uploads/2013/06/bg2.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }
     
    robertburney likes this.

Share This Page