This method is effective when tested locally
body {
/*background: Gainsboro;*/
background: url(../dt_images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
After modifying the master page HTML file on the SP 2013 server, the expected cloudy background image does not appear (although other override CSS changes are visible).
body {
background: url(../DT_CustomFiles/DT_IMAGES/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Is it possible that SP 2013 restricts the use of background images?
Appreciate your assistance