MyBB Community Forums

Full Version: Background picture Not looking perfect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, My Forums background picture isn't looking HD http://prntscr.com/8d9w0q
How could i fix that? I used this code to make it big and fit in the forums.
background: url(path to your image) no-repeat center top;

background-size: 100% 100%;
thnx
How big of an image are you trying to use? If you are trying to fill the entire background, I would suggest at least a 1920x1080 image.
Yeah thanks, 1920x1080 is what i need.
background: #fff url(images/theme/image.jpg) center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
(2015-09-07, 02:01 PM)iAndrew Wrote: [ -> ]background: #fff url(images/theme/image.jpg) center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;

Better and better, thanks