... but stay where it is even when you scroll up or down.
Kinda like a watermark in word I guess.
... but stay where it is even when you scroll up or down.
Kinda like a watermark in word I guess.
Using CSS:
VB Code:
body { background: url("path to your image"); background-repeat: no-repeat; background-attachment: fixed; }
Where would that go in the HTML?
Doh - you just make it a watermark :|
As below...
<body background="mwdog2v2.gif" bgproperties="fixed">
Aha! Got it, thankyou axion_sa.Code:<STYLE TYPE="text/css">
body {
background: url("mwdog2v2.gif");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 50% 0;}
</STYLE>
Welcome :)