How to insert a clickable and fixed background [duplicate]

Add div after body tag and apply below style. Your site start working.

 <div class="fixedHeader"></div>
<style type="text/css">
.fixedHeader{
    position: fixed;
    height: 80px;
    background: white url(http://www.affiliago.it/accounts/default1/banners/SKIN_BAKECA.jpg) no-repeat no-repeat center top;
    width: 100%;
    z-index: 1000;
    top: 0;
}
</style>