Home › Forums › CSS › How to center bg image? › Reply To: How to center bg image?
September 29, 2014 at 2:01 am
#184934
Participant
Remove that image entirely from wherever it is, re-size the image if you can to get a good size I usually stick with 1920×1080. Next set the image to the html of your website.
html {
background: url(yourimageurlhere) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
This will center your image and also make it responsive at the same time. I think the issue is your trying to set an image held in a wrapper to the whole sites background.