For example if you go on: http://www.go2web20.net/twitterFollowBadge/ You can see on the right side of the page it says FOLLOW US on a badge thats basically attached to the side. Unfortunately that generator is only for twitter. Does anyone know the code so I can attach my own image there with my own information. I am guessing it's javascript?
If I correctly understood what you mean, I think I've got a simple solution. The best and easiest way to do this is in CSS. I've tried it, and tested it on my site. Take a look if this is what you mean: http://www.brisingr.nl. The code for this would be: HTML (be sure this is placed outsite your container/wrapper, so preferably just after the <body> or just before the </body> tags): <a href="http://www.google.com/" id="badge"></a> Code (markup): CSS #badge { width: 50px; height: 200px; background-image: url(images/badge.png); background-repeat: no-repeat; position: fixed; right: 0; /* Change to left if you want it to float left */ top: 50%; } Code (markup): I hope that helped.