damnit I used to know how to do this.. how do you set the background image as stationary and have the text scrollable..?
Printable View
damnit I used to know how to do this.. how do you set the background image as stationary and have the text scrollable..?
Using CSS:
Code:body {
background: url("../blah.gif");
background-repeat: no-repeat;
background-attachment: fixed;
}
Thanks, ax.. however...
there used to be a way with html.. something in the background or image properties..
Haven't seen it before :confused: I prefer CSS - much easier :)
OK, ax, I'll give it a try :) thanks
If I remember correctly, this doesn't work with IE. You'll only get the effect you want if your audience uses a real browser.