Full background image

You mean like an advertising banner, or just a background image?
like an ad banner, because im use to the YouTube banners that are at the top of youtube channels. I would like to do this for my forum. I would like to design an ad banner that covers the top of the forum. I dont really want the logo block i rather a fill banner
 
use something like this in your css...

Code:
body {
    background: url("./images/background.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

should make it full responsive also.
 
Top Bottom