I currently use the following code to put a background on the whole html document, but I only want it on the main home page - once a user login I want it to be removed is there away with CSS or Javascript to do such a thing?
html{display:block;
width:100% !important;
height:100% !important;
background: url("../images/carged_dog.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;}
html,body{ margin:0; padding:0;}