As Badotz mentioned you can do it with javascript and css.
This link will help you more.
http://www.dynamicdrive.co
Main Topics
Browse All TopicsHi
Please visit this site http://www.shingleback.com
notice the floating shopping cart
How is this done, using what technologies?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
As Badotz mentioned you can do it with javascript and css.
This link will help you more.
http://www.dynamicdrive.co
From one of my own sites:
<scrip type="text/javascript" language="javascript>
var Type = 'Z';
function StartFloat() {
try {
if(document.all) {
document.all.AdFloater.sty
document.all.AdFloater.sty
Type = 'A';
} else if(document.layers) {
document.AdFloater.right = '600px';
document.AdFloater.visibil
Type = 'B';
} else if(document.getElementById
document.getElementById('A
document.getElementById('A
Type = 'C';
}
if (document.all) {
window.onscroll = Float;
} else {
setInterval('Float()', 100);
}
}
catch(err) {}
}
function Float() {
if (Type == 'A') {
document.all.AdFloater.sty
} else if (Type == 'B') {
document.AdFloater.top = window.pageYOffset;
} else if (Type == 'C') {
document.getElementById('A
}
}
function ToggleFloat() {
if (document.images['AdFloate
//pijltje naar boven wordt niet getoond. Blokje is boven en moet nu floaten
document.images['AdFloater
StartFloat();
} else {
//pijltje naar boven wordt wel getoond. Blokje float nu dus. Rechtsboven fixeren
document.images['AdFloater
document.getElementById('A
document.getElementById('A
Type = 'Z';
}
}
</script>
<span align="right" id="AdFloater" style="position:absolute;v
Works fine
Business Accounts
Answer for Membership
by: BadotzPosted on 2009-08-24 at 00:20:39ID: 25166131
It's a <div> positioned using JavaScript/CSS.
Use Firebug and see for yourself.