Background Codes

Background Colour

<style type="text/css">
body { background-color: #FFFFFF; }
</style>

Background Image

<style type="text/css">
body { background-image: url("URLHERE"); }
</style>

Background Image with Background Colour

<style type="text/css">
body { background-image: url("URLHERE"); background-color: #FFFFFF; }
</style>

Fixed Background Image

<style type="text/css">
body { background-image: url("URLHERE"); background-attachment: fixed; }
</style>

Fixed Background Image with Background Colour

<style type="text/css">
body { background-image: url("URLHERE"); background-color: #FFFFFF; background-attachment: fixed; }
</style>

Non-Repeating Fixed Background Image

<style type="text/css">
body { background-image: url("URLHERE"); background-position: right bottom; background-attachment: fixed; background-repeat: no-repeat; }
</style>

"right bottom" can be changed to: center, left center, right center, right bottom, left bottom, center bottom, right top, left top, or center top.


Non-Repeating Fixed Background Image with Background Colour

<style type="text/css">
body { background-image: url("URLHERE"); background-color: #FFFFFF; background-position: right bottom; background-attachment: fixed; background-repeat: no-repeat; }
</style>

"right bottom" can be changed to: center, left center, right center, right bottom, left bottom, center bottom, right top, left top, or center top.


Stretched Background Image

There is no code that will do this.


Repeating Background Image with Fixed Background Image

There is no code that will do this.