<script language="JavaScript1.2">
if (document.all)
document.body.style.cssText="background:white url(notebook.jpg) no-repeat fixed center center"
</script>
JP
------------------
The Webmaster Promotion and Resource Site www.what-next.com
The NEXT step in Designing and Promoting your Website
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.
JP Stones posted this at 19:35 — 29th March 1999.
They have: 2,390 posts
Joined: Nov 1998
Jeremy,
Sorry about the delay in answering this post - it was corrupt and I had to fiddle about to fix it.
Anyway...
I would use style sheets for this, though I'm sure there is another way (anyone?)
Place this command in your <HEAD> tags.
<STYLE TYPE="text/css">
BODY {background-image: url(Image.gif);
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed; }
</STYLE>
This will keep the image in the center all the time, if you need any more help, just ask.
JP
------------------
The Webmaster Promotion and Resource Site
www.what-next.com
The NEXT step in Designing and Promoting your Website
JP Stones posted this at 18:38 — 1st April 1999.
They have: 2,390 posts
Joined: Nov 1998
This next script is IE4 exclusive:
<script language="JavaScript1.2">
if (document.all)
document.body.style.cssText="background:white url(notebook.jpg) no-repeat fixed center center"
</script>
JP
------------------
The Webmaster Promotion and Resource Site
www.what-next.com
The NEXT step in Designing and Promoting your Website
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.