I found some more problems, maybe someone can verify, eventually confirm so we can have the original fixed?
validator reports:
– Line 238, Column 39: document type does not allow element “style” here
document.write(‘<style type=”text/css”>.tabber{display:none;}</style>’:wink:;
had to change header.php from:
<script type="text/javascript">
/*
Optional: Temporarily hide the "tabber" class so it does not "flash" on the page as plain HTML. After tabber runs, the class is changed to "tabberlive" and it will appear. this code will cause invalid xhtml in code but it is necessary for optimal perfomance
*/
document.write('<style type="text/css">.tabber{display:none;}</style>');
</script><code>to</code><!--<script type="text/javascript">
/*
Optional: Temporarily hide the "tabber" class so it does not "flash" on the page as plain HTML. After tabber runs, the class is changed to "tabberlive" and it will appear. this code will cause invalid xhtml in code but it is necessary for optimal perfomance
*/
document.write('<style type="text/css">.tabber{display:none;}</style>');
</script>-->
<style type="text/css">.tabber{display:none;}</style>
– Line 323, Column 86: cannot generate system identifier for general entity “d” the sourcecode shows it to be an avatar: `<span class=”blog-avatar”>
<img alt=” src=’http://www.gravatar.com/avatar/3413043b082132b949b9962cc39af517?r=G&d=wavatar&s=35′ class=’avatar avatar-35′ height=’35’ width=’35’ />
</span>
generated from functions.php like$default = urlencode(“$pathtotheme/images/mygif.gif”:wink:;
echo “<img src=’http://www.gravatar.com/avatar.php?gravatar_id=$md5&size=32&default=$default’ alt=’$the_author_name” />’;*/` – what can be done here?