|
-
Feb 25th, 2003, 06:20 AM
#1
Thread Starter
Addicted Member
Resolved - (HTML Question) How do I make an image appear in the background........
... but stay where it is even when you scroll up or down.
Kinda like a watermark in word I guess.
Last edited by Sir_Brock; Feb 25th, 2003 at 07:19 AM.
_____
Hehehe
-
Feb 25th, 2003, 06:41 AM
#2
Using CSS:
VB Code:
body {
background: url("path to your image");
background-repeat: no-repeat;
background-attachment: fixed;
}
-
Feb 25th, 2003, 06:43 AM
#3
Thread Starter
Addicted Member
Where would that go in the HTML?
-
Feb 25th, 2003, 06:50 AM
#4
Thread Starter
Addicted Member
Doh - you just make it a watermark :|
As below...
<body background="mwdog2v2.gif" bgproperties="fixed">
-
Feb 25th, 2003, 07:10 AM
#5
Thread Starter
Addicted Member
Code:
<STYLE TYPE="text/css">
body {
background: url("mwdog2v2.gif");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 50% 0;}
</STYLE>
Aha! Got it, thankyou axion_sa.
Last edited by Sir_Brock; Feb 25th, 2003 at 07:15 AM.
_____
Hehehe
-
Feb 25th, 2003, 07:13 AM
#6
Welcome
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|