Floating image fixed position over half over content

Hi

I want to create a fixed image over the content area but that doesnt
move even if you resize browser etc…

Also, that works in IE6+

Any ideas?

Here is an example of what I would like, tested in firefox only so far:
http://www.clients.digadesign.com/karl/KARL-IMA%20Final/verre.html

Thanks,
Chris

Change position: fixed to position: absolute. E.g.

#image {
 [COLOR="Red"] position:absolute;[/COLOR]
  bottom:0;
  right:0;
}

Hi, if you still need position:fixed and not absolute, then to get IE6 working you’d need an expression for it to simulate it :slight_smile:

HI

Basically I wanted the image to be fixed half in the content area and half outside the content area of that link. This way would make it fixed on the whole site.

Anyway to do this?