non scrolling background image and page header image

Discussion in 'Woodpecker WordPress Business Theme' started by liftedplane, May 7, 2014.

  1. liftedplane

    liftedplane New Member

    Joined:
    Jul 16, 2013
    Messages:
    23
    Likes Received:
    0
    Location:
    Washington State
    I've gone through most of the threads here and I've managed to get almost everything working properly,

    what I'm trying to do now it make it so the body background image doesn't tile. I want it to scroll with the page.

    I also want to completely remove the header image on pages

    http://kingvapers.com/products/

    I cannot seem to find how to remove it entirely.
     
  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:
     html, body {
    background: url(http://kingvapers.com/wp-content/uploads/2014/05/website-background.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    } 
    div.top-wrapper{
    background:#fff;
    }
    
    This will solve your issue.
     
  3. liftedplane

    liftedplane New Member

    Joined:
    Jul 16, 2013
    Messages:
    23
    Likes Received:
    0
    Location:
    Washington State
    this works great except

    http://kingvapers.com/products/

    the bar that is still under the menu, I need to get rid of that picture as well and I cannot remember how to, nor can I find where to remove it.

    thank you very much
     
  4. 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:
    .page-top-bg img {
    visibility: hidden;
    } 
    Thanks & Regards
    Gourav Shrivastava
     

Share This Page