MyBB Community Forums

Full Version: body css background image size
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is my coding;

text-align: left;
line-height: 1.4;
margin-bottom: 20;
margin-top: 0;
margin-left: 0;
margin-right: 0;
background-repeat: repeat-y;
background-position: top center;
background-attachment: fixed;

Some of my members are saying the background is to small for some monitors screen resolution so how do I stretch it properly?

Will this work; background-repeat:no-repeat;

Or do I need to use something like "100%" or something like that what is compliantk, the 100% or something like the no-repeat?
background-size:100%;
text-align: left;
line-height: 1.4;
margin-bottom: 20;
margin-top: 0;
margin-left: 0;
margin-right: 0;
background-repeat: repeat-y;
background-position: top center;
background-attachment: fixed;
background-size:100%;

---------------------------------------

Is that good or do I need to ditch one of the other coding?