| <style>body {background-color:000000;}</style> |
To remove white center
table:
| <style>table, td {background:transparent}</style> |
To make the background picture
stay put when you scroll:
| <style>body{background-attachment:fixed;}</style> |
(If needed) To make your
background not repeat:
| <style>body{background-repeat:
no-repeat;}</style> |
To make your text visible:
| <style>body, table, td,
.text{color:COLOR_CODE</style> |
To change the color of the links:
| <style>a:link {color:COLOR_CODE!
important;}</style> |
To give the pictures a translucent
look in firefox:
| <style>body{-moz-opacity:.80;opacity:.80;}</style> |
To give the picture a translucent
look in IE:
| <style>img{filter:alpha(opacity=85);}</style> |
Or this code to put a gray filter
on all the images in IE:
| <style>img {filter:gray;}</style> |
Or this code to flip
the pictures when you hover over them:
| <style>a:hover img{filter:fliph;} |
Adding a border around
images:
Replace "Size" with a number from 1-10 and view our
color guide for colors codes.
| <style>a img{border:SIZEpx solid COLOR}</style> |