Write the following code with in the .class
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(images/newbanner.png) no-repeat;
width: 180px; /* Width of new image */
height: 236px; /* Height of new image */
padding-left: 180px; /* Equal to width of new image */
example
@media only screen and (max-width: 1036px) {
.logo-holder {
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(../images/logomob.jpg) no-repeat;
width: 180px; /* Width of new image */
height: 236px; /* Height of new image */
padding-left: 180px; /* Equal to width of new image */
top:0;
}
}