tiling watermark

admin

Administrator
Staff member
Hello People<br />
<br />
Is there anybody who knows how to stop an image tiling when using the "background" tag.. I have an image on my web page that is set as a watermark..rather than have it tiling id like to just have one single image i can left align...any ideas?<br />
<br />
Rob<!--content-->This way:<br />
<br />
<br />
<HTML> <br />
<HEAD> <br />
<TITLE> Fixed background using styles </TITLE> <br />
<STYLE TYPE="text/css"> <br />
BODY { background-repeat:no-repeat;background-attachment:fixed; <br />
background-position:left top;background-image:url(blah.jpg) } <br />
</STYLE> <br />
</HEAD> <br />
<BODY> <br />
etc... <br />
<br />
The background-position can left/center/right for x axis and <br />
top/center/bottom for the y axis. With IE5.5 you can use a numeric value to <br />
specify the x/y co-ordinates in pixels<br />
<br />
==========<br />
<br />
:rocker:<!--content-->ah ha..thankyou very much<!--content-->
 
Back
Top