I want to do a "bookmark this site" image and i want to display it in the top right had corner like this. is there an easy way to do this?
Sure. Say you call your div #bookmark: <div id="bookmark">Click to bookmark</div> Code (markup): div#bookmark { position: absolute; top: 0; right: 0; width: 200px; height: 200px; } Code (markup): There are other methods of achieving a similar result using a float, but it would depend on your current layout and if you set your body's margins to 0 or not. Basically, the method above should work just fine.