Forum Moderators: not2easy
img#logo { position: fixed; right: 0; top: 0; } It doesn't work with IE though. The only form of fixed positioning IE supports is on background images. For that you'd do something like:
body { background-image: url(whatever); background-position: top right; background-atachment: fixed; } As far as I'm aware this only works on the <body> element in IE.