Picture over the full page

Hi there

I am just starting and create the landing page.
The goal is to use an image over the whole site as background.

How can I do that?

I prefer pure css with the background image property with fixed center behavior with no repeat (assuming image is big enough). Then you can leverage CSS3 using the background-size property (this is vendored) for cover.

1 Like

Uff. That is great, how to do that in practice?

class/id { 
  background: url(path/to/image.extension) no-repeat center center fixed; 
  background-size: cover;
}
1 Like

Thanks a lot ^.^