Background image on other parts of blog

Hi!

I’ve been customizing Travelify for a new website I’m working on and I have a question. Is there an option in the css or one of the php scripts so I can continue my background tiles underneath the header, slider and ‘behind’ the blog and widget boxes? The effect I want to achieve is the following: http://i.imgur.com/07mnvju.jpg

My WIP website can be accessed here: http://mediaboat.be/webtest/

Thanks!

Add this code to Theme Options - Other - Custom CSS

.wrapper {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
article, .widget {
    background: rgba(203, 196, 185, 0.2);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.entry-meta-bar {
    background: rgba(203, 196, 185, 0.3);
}

This is just a basic idea and you can feel free to tweak these values accordingly.

Thanks a lot! That’s exactly what I wanted! You’re awesome!