How to Setup Full Background Image on Framework7 Cordova
Full Background Image for Framework7 with Cordova.
This is a short snippet of CSS on how to put a full screen background image on your Framework7 Cordova App.
.page {
font-family: "centabel";
background: url("../img/fondo.jpg") no-repeat center center fixed !important;
background-size: cover !important;
}