Thanks for the reply,
but it doesn't seem to be working.
Here is my test page, as you can see the style info is in the header, and the cell is correctly named.
But no image appears at all.
The target image does exist, and is accessible, I have tried the url with double quote marks and single quote marks and without, nothing makes a difference.
I'm really at a loss, it looks simple enough.
CODE
<html><head><meta http-equiv="Content-Language" content="en-gb">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Testing CSS</title>
<style>
.bl_image{
background url(www.world-recoded.co.uk/images/folder2.png) bottom right no-repeat transparent;
}
</style>
</head>
<body>
<table border="1" width="1121" id="table1" height="295">
<tr>
<td class="bl_image"><p align="center">Cell content</td>
</tr>
</table>
</body>
</html>