How do I put an image in the website's background?

To get a picture in the background of your website, simply put an image called '''background.jpg''' in the same folder as the other mobiki files are and add the following lines to the '''html''' section of the template.css file, not body section:

background-image: url('background.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: 100%;
background-attachment: fixed;

The image should not be too big in size, otherwise you will put too much load on mobile phone.
'''Back to FAQ⤴'''