td background vs. body background
Hi,
I want the page to have the image background but why 1 is worked and 2 isn't, please explain?
1. image is displayed
<td background="#imageDirPath#/images.cfm?test_1.jpg"></td>
2. image is not displayed
<body background="#imageDirPath#/images.cfm?test_1.jpg">"></body>
3.
<style>
.slide1
{
background-image:url(images/test_1.jpg);
width:769;
height:573;
}
is there the way to call the background-image:url(images/test_1.jpg) from style to call the imageDirPath#/images.cfm?test_1.jpg?
image.cfm
<cfcontent file="#GetDirectoryFromPath(GetCurrentTemplatePath())#images/#CGI.QUERY_STRING#" type="image" deletefile="No">
thanks
