I want to center a background image. There is no div used, this is the CSS style:
body{ background-position:center; background-image:url(../images/im
Had the same problem. Used display and margin properties and it worked.
.background-image { background: url('yourimage.jpg') no-repeat; display: block; margin-left: auto; margin-right: auto; height: whateveryouwantpx; width: whateveryouwantpx; }