I would like to use a full page image background with a non-fixed content. How to achieve this within the creativity template?
I completed the overide.css file:
- Code: Select all
html { background: url("../images/bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover; }
However the image disappears once the page is loaded.
Thank you for your help.