PDA

Click to See Complete Forum and Search --> : Frame Sticky Image


tZ
05-12-2005, 04:50 PM
How can i make images stick to a page inside a frame. So that when the page scrolls the image's do not scroll only the text would?

I remember long ago i did this and can't remember/ find the file i created.

any help would be wonderfull.

-thanks

DeleteYourself
05-12-2005, 05:04 PM
use an <iframe> for the image maybe?

mattborghi
05-12-2005, 05:10 PM
yeah, or just make a two frame web page, one main frame, and one other frame on the right or the left, you can do this easily in Dreamweaver, Frontpage, and Go Live, or you can just hardcode it, but you'll need multiple pages, as it's a frameset.

Ryan8720
05-12-2005, 07:40 PM
In the CSS you would set background-attachment: fixed;

For example

body {
background: #fff url(images/bg.gif) no-repeat fixed 0 0;
}