Resources
helping you along the way
Knowledge is the foundation of all wisdom...
Resources >> Web workshops >> CSS Floating Background
Floating Background Image
Add a background image style property to the body tag:
<style type="text/css">
<!--
body {
background-attachment: fixed;
background-image: url(yourImage.gif);
background-repeat: no-repeat;
background-position: right top;
}
-->
</style>
This CSS will place the image in the top right hand corner of your page and the image will remain there, even when the page is scrolled.
