View Full Version : page over page effect
peorge
08-24-2008, 10:36 PM
I am trying to make a web page that has a stationary background while the text and pictures are scrolled. I am not good at coding as I mostly use yahoo site builder so please talk to me as a noob. :confused:
Thank You,
Peorge
Medyman
08-25-2008, 01:53 PM
I don't know the specifics of how this would be done in Yahoo Site Builder. But, the technique to do it via CSS is outline on the following pages:
http://www.w3schools.com/css/tryit.asp?filename=trycss_background-attachment
http://htmldog.com/reference/cssproperties/background-attachment/
JShor
08-25-2008, 02:26 PM
yes, replace your <body> tag with this:
<body background="URL_TO_YOUR_IMAGE_HERE">
in css, the background scrolls as well, -- this way it;s stationary
mburt
08-25-2008, 03:18 PM
No, just used the position: fixed css attribute.
body {
background: url("image-url.jpg") fixed;
}
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.