Why do you want to use a table? Seeing that this looks like it's for a layout, use divs instead.
Code:
body {
/*so that it will work for all screen sizes */
background: url('path/to/the/grain/behind/the/background.jpg');
}
#container {
margin: 0 auto;
width: 400px;
height: 100%;
background: url('path/to/your/image.jpg');
}
#content {
padding: 10px;
width: 100%;
}
HTML Code:
<div id="container">
<div id="content">
content
</div>
</div>
- Steve
__________________
if($stevej == "helpful") { $talkupation += $user_power; }
|