Как заменить знак МуББ на свой логотип

Админка - настройки- HTML низ:

Код:
<script language="JavaScript">
text = document.getElementById("pun-title").innerHTML;

divtext = "<div style=\"position: relative; top: 0px; left: 0px; z-index:1; \">\n"

divtext += "<div style=\"width: 100%; background-color: transparent; position: absolute; top: 0px; left: 0px; z-index:20\">\n"
divtext = divtext + "<img src=\"АДРЕС РИСУНКА\" border=0>\n"
divtext += "</div>\n"

document.getElementById("pun-title").innerHTML  = divtext + text + "</div>"
</script>

<style>#pun-title h1 {display : none;  !important;}
#pun-title {height:100px; !important;}
</style>

Эксперементируйте с высотой в пикселях.

У меня размер рисунка 249 x 91 пикселей, 24 битов на пиксел, JPEG.

Источник