How do i code an image into the top right hand corner and example can be seen here http://www.namecheap.com/index.asp
If it's a body background image, use this: body { background: url(image.jpg) right top no-repeat; margin: 0; padding: 0;} If you want to include it into a div, use this: #whatever { background: url(image.jpg) right top no-repeat; float: right; margin: 0;}
Katy's one works but if you want to add text, links or other content, use an absolutely positioned layer. #ad { position: absolute: top: 0px; right: 0px; } Code (markup): <div id="ad">...</div> Code (markup):