Background Image CSS

Discussion in 'ColorWay WordPress Theme' started by dannyb3219, Apr 9, 2014.

  1. dannyb3219

    dannyb3219 Guest

    Joined:
    Apr 8, 2014
    Messages:
    1
    Likes Received:
    0
    I am looking for the .css style for the background image in the Colorway theme. I would like it to not repeat and be fixed. I am having trouble finding it in the style.css

    Thanks in advance!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Firstly,

    Go to Appearance > Theme Option > General Settings > Body Background Image
    and remove background image from there.

    Now,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     html, body {
    background: url(Enter your image address here) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }


    Thanks & Regards
    Gourav Shrivastava
     

Share This Page