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
 
When I make the image and I see it in desktop it looks great and it fits to the screen, even if I shrink it so low, but when I see it in iphone the graphic doesn't fit, why?
 
Are you referring to where it does something like this?
View attachment 77965

If so, in your ACP -> Style Properties -> General -> Body
define the background image and to keep it constrained on one page (with no scrolling) use the appropriate background-size: parameter (I use cover).
View attachment 77966
Where does it pull the image from i see it says "images" where is that folder?
 
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.
 
Back
Top Bottom