hello there

thats a nice forum.. actually the same skin as on my forum but you've messed it up.
Angel change the images...
heres the code you should use: (put it in the main footeR)
<script type="text/javascript">
<!--
/*Head/Base Images for Main Board - By iAlex - Open Source*/
var iTopMainPic = "http://i41.tinypic.com/yyw00.jpg"; //Main Board Head Image
var iEndMainPic = "http://i39.tinypic.com/v4tbop.jpg"; //Main Board Base Image
if(location.href.match(/action=home/) || !location.href.match(/action/)){
var iTd=document.getElementsByTagName('td');
for(i=0;i<iTd.length;i++){
if(iTd.item(i).className.match(/^titlebg/) && iTd.item(i).colSpan=="2" && iTd.item(i).innerHTML.match(/>Forum Name</)){
var iTopMainDiv=document.createElement('div');
var iEndMainDiv=document.createElement('div');
iEndMainDiv.innerHTML='<center><img src="'+iEndMainPic+'" /></center>';
iTopMainDiv.innerHTML='<center><img src="'+iTopMainPic+'" /></center>';
var iQuickenMain = iTd.item(i).parentNode.parentNode.parentNode.parentNode.parentNode.parentNode;
iQuickenMain.parentNode.parentNode.insertBefore(iTopMainDiv, iQuickenMain.parentNode);
iQuickenMain.parentNode.parentNode.insertBefore(iEndMainDiv, iQuickenMain.parentNode.nextSibling);
}
}
}
//-->
</script>
and heres the correct code you should use instead of the one you use in the global header
<style type="text/css">
<!--
body {
background-image: url(
http://i40.tinypic.com/bi8ncn.jpg);
background-position: top center;
background-repeat: repeat-y;
background-attachment: fixed;
background-color: #e8e8e8;
}
.catbg {
background-image: url(
http://i43.tinypic.com/2ur2z4l.jpg);
}
.titlebg {
background-image: url(
http://i43.tinypic.com/2ur2z4l.jpg);
}
.menubg {
background-image: url(
http://i39.tinypic.com/f2stc5.jpg);
padding: 0px;
background-repeat: no-repeat;
}
.windowbg, .windowbg2 {
border-top: 1px solid #ffffff;
border-left: 1px solid #ffffff;
}
-->
</style>
replace it with your previous code that you used before.
this will fix your theme
🙂