Add background image to the body

Discussion in 'Infoway WordPress Theme' started by outofmire, Jan 1, 2014.

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

    outofmire New Member

    Joined:
    Jan 1, 2014
    Messages:
    3
    Likes Received:
    0
    Is it possible to either make the body transparent so that the background image shows, or else add a different image to the body?
     
  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_wrapper{
    background-color: rgba(255, 255, 255, 0.3);
    }
    .header{
    background-color: rgba(255, 255, 255, 0.3);
    }
    .menu_container{
    background-color: rgba(255, 255, 255, 0.3);
    }
    .wrapper_menu{
    background-color: rgba(255, 255, 255, 0.3);
    }
    #featured{
    background-color: rgba(255, 255, 255, 0.3);
    }
    .slider_wrapper .infotag{
    background-color: rgba(255, 255, 255, 0.3);
    }
    .slider_wrapper{
    background-color: rgba(255, 255, 255, 0.3);
    }
    .contentbox{
    background-color: rgba(255, 255, 255, 0.3);
    }
    .feturebox{
    background-color: rgba(255, 255, 255, 0.3);
    }
    #carousel-full .carousel-posts li{
    background-color: rgba(255, 255, 255, 0.3);
    }
    .testimonial{
    background-color: rgba(255, 255, 255, 0.3);
    }

    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  3. outofmire

    outofmire New Member

    Joined:
    Jan 1, 2014
    Messages:
    3
    Likes Received:
    0
    that mostly does the trick. What about the container that holds the actual blog posts? (sorry, I thought that was the body, but I guess not) Also, what if I wanted to add a different image rather than make it transparent? What do I substitute for "background-color: rgba(255,255,255,0.3);"? I know it should say something like "background-image: url(http://.....);" right?
     
  4. outofmire

    outofmire New Member

    Joined:
    Jan 1, 2014
    Messages:
    3
    Likes Received:
    0
    Nevermind. I think I found the answer in the post archives. Thank you. I really like this theme.
     
Thread Status:
Not open for further replies.

Share This Page