settings for background image

Discussion in 'GoldenEagle WordPress Theme' started by totaldiagnostic, Sep 25, 2013.

Thread Status:
Not open for further replies.
  1. totaldiagnostic

    totaldiagnostic New Member

    Joined:
    Sep 17, 2012
    Messages:
    20
    Likes Received:
    0
    hello

    I would like to have, un both sides of the site, some pictures
    I have an 1440x900px image, with a gap in the middle of 940px (the site width)
    can this background be centered always, with the site? so this gap is always behing the body of the site?

    see atachment

    i tryed some custom CSS code that you provided in another thread, but i dont like the result
    (body, html {
    background: url(Enter your image address here) no-repeat center center fixed!important;
    -webkit-background-size: cover!important;
    -moz-background-size: cover!important;
    -o-background-size: cover!important;
    background-size: cover!important;

    } )

    i hope you can understand my problem

    10x
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

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

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

    Code:
    body, html {
    background: url(Enter your image address here) no-repeat center center fixed!important;
    -webkit-background-size:100% 100%;
    -moz-background-size: 100% 100%;
    -o-background-size: 100% 100%;
    background-size: 100% 100%;
    }
    Adjust its value as per your requirements.
     
  3. totaldiagnostic

    totaldiagnostic New Member

    Joined:
    Sep 17, 2012
    Messages:
    20
    Likes Received:
    0
    hello
    it work great

    thank you again
     
Thread Status:
Not open for further replies.

Share This Page