No problem, isn't this part of Christmas spirit? ;)
I think it might be a character encoding issue, please copy paste the two following code snips:
header
Code:
<script type="text/javascript"> //<![CDATA[
var tlJsHost = ((window.location.protocol == "https:") ? "https://secure.comodo.com/" : "http://www.trustlogo.com/");
document.write(unescape("%3Cscript src='" + tlJsHost + "trustlogo/javascript/trustlogo.js' type='text/javascript'%3E%3C/script%3E"));
//]]>
</script>
footer
Code:
<div id="comodo-ssl">
<script language="JavaScript" type="text/javascript">
TrustLogo("http://dancingtothespiritofthewood.com/includes/templates/template_default/images/comodo_secure_52x63_white.png", "CL1", "none");
</script>
<a href="https://www.positivessl.com/" id="comodoTL">Positive SSL</a>
</div>
You can paste the footer piece either right before <!--bof-navigation display --> like this
Code:
<div id="comodo-ssl">
<script language="JavaScript" type="text/javascript">
TrustLogo("http://dancingtothespiritofthewood.com/includes/templates/template_default/images/comodo_secure_52x63_white.png", "CL1", "none");
</script>
<a href="https://www.positivessl.com/" id="comodoTL">Positive SSL</a>
</div>
<!--bof-navigation display -->
or between <!--eof-navigation display --> and <!--bof-ip address display --> like this
Code:
<!--eof-navigation display -->
<div id="comodo-ssl">
<script language="JavaScript" type="text/javascript">
TrustLogo("http://dancingtothespiritofthewood.com/includes/templates/template_default/images/comodo_secure_52x63_white.png", "CL1", "none");
</script>
<a href="https://www.positivessl.com/" id="comodoTL">Positive SSL</a>
</div>
<!--bof-ip address display -->
or after <!--eof- site copyright display --> like this
Code:
<!--eof- site copyright display -->
<div id="comodo-ssl">
<script language="JavaScript" type="text/javascript">
TrustLogo("http://dancingtothespiritofthewood.com/includes/templates/template_default/images/comodo_secure_52x63_white.png", "CL1", "none");
</script>
<a href="https://www.positivessl.com/" id="comodoTL">Positive SSL</a>
</div>
You need to remove the snip you have in tpl_main_page.php
Please make a backup copy of your working files, so that if something doesn't work as expected you can always go back to your working one.
OT
I see you did use the classic template, and modified that, which you shouldn't have, instead you should have created your own custom template, maybe for the next cart you should do so.
Based on the above I'd have suggested to use the override structure, and put the ssl image in YOUR_TEMPLATE image folder, and correct the path in the footer snip to point there, but as it's now you can leave it as it is.