Can someone please tell me how to do this? If you go to this website: Maxsynergy look on the top left side of the page, at the little green banner that says "garden of the day". What is this called and how do I implement it into my website? Thanks
It's an absolute positioned div... add this to html: <div id="yourdivname"><a href="http://www.yourlink.com/" target="_blank">link text</a></div> css (adjust image dimension to suit) div#yourdivname { position: absolute; left: 0; top: 0; z-index: 4; background: url(../img/yourimage.png) no-repeat; width: 150px; height:100px; text-indent: -999px; display: block; }