Put this line of code directly below your beginning body tag and before any divs or tables in header.html
This will give you a 45 degree banner in the top right corner using z-index.
Relative Banner - stays in the same place
PHP:
<area shape="poly" alt="" coords="3,0, 203,199, 201,127, 73,0" href="index.php?name=Downloads&c=18">
</map><div style="position:relative; float:right; z-index:2;"><img src="{THEME_PATH}/images/z-indexPromo.gif" width="200"
height="200" alt="" border="0" usemap="#z_indexPromo_Map" /></div>
Fixed Banner - scrolls with page
PHP:
<area shape="poly" alt="" coords="3,0, 203,199, 201,127, 73,0" href="index.php?name=Downloads&c=18">
</map>
<div style="position:fixed; right:0px; top:0px;"><img src="{THEME_PATH}/images/z-indexPromo.gif" width="200"
height="200" alt="" border="0" usemap="#z_indexPromo_Map" /></div>
Attached is an example image to get you started.