Make header have background image

Discussion in 'Appointway WordPress Theme' started by v4sb, Nov 23, 2013.

  1. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    I would like my header to be a background image instead of a solid color. How can I do this, so that my image is the background, but also so that my image is center and does not repeat?

    Thank you in advance.
     
  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:
    .header_container {
    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;
    } 
     

Share This Page