MyBB Community Forums

Full Version: Background issues
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well i am trying to make a custome BG but I have some issues.

To me, I see this.
http://i56.tinypic.com/acv04h.png

To others they see this.(her resolution was 1366x768)

http://gfxcafe.net/gallery/17_27_04_11_1_34_41.png

and some even see this!(1440x900)
http://gfxcafe.net/gallery/60_27_04_11_1_40_19.png

Any ides why this happens and a way to fix it?
The background is in different positions for different resolutions.

Change it to

background: url(your image) center no-repeat;
Then add below:
background-position: fixed; // To disable movement of image.
(2011-04-27, 02:16 AM)Jason L. Wrote: [ -> ]The background is in different positions for different resolutions.

Change it to

background: url(your image) center no-repeat;
Then add below:
background-position: fixed; // To disable movement of image.
It's perfect for me but not other. D: how does it look for you? http://mcmines.com
Others-(there are white areas.
http://gfxcafe.net/gallery/60_27_04_11_2_22_17.png

My resolution is 1280x800


Here is the CSS.
body {
	background: #efefef url(SUBIR/images/mycleangreen/bg.png) center no-repeat;
	color: #000;
	font-family: Verdana, Arial, Sans-Serif;
        background-attachment: fixed;
	font-size: 13px;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}