
September 18th, 2012, 01:23 PM
|
|
Contributing User
|
|
Join Date: Jun 2012
Location: Troy, NY
|
|
I did a quick test for your issue and it seems that the image in question does not exist. I would try re uploading the image.
Code:
<!DOCTYPE html>
<html>
<head>
<title>Table Test</title>
<style <style type="text/css">
table {margin: 0 auto; width: 50%; }
td{border: 1px solid #333; padding: 20px; text-align:center; }
</style>
</head>
<body>
<table>
<tr>
<td id="content" valign="top" style="background: url(http://www.omittedsite.com/images/bg_wrapper.gif) repeat-x">This td should have a<br> background image</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
</table>
</body>
</html>
|