1 error in W3C
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
1 error in W3C
62 errors: http://validator.w3.org/check?uri=http% ... ator%2F1.3
Looks like they are all caused by the games database
Also some css that should be put in a stylesheet instead of the html files.
Looks like they are all caused by the games database
Also some css that should be put in a stylesheet instead of the html files.
1 error in W3C
Yer as i said i know about the other errors but the last one is line 935 which relates to this code :
Code: Select all
<script type="text/javascript">
$(".forumlist").collapse({show: function(){
this.animate({
opacity: 'toggle',
height: 'toggle'
}, 300);
},
hide : function() {
this.animate({
opacity: 'toggle',
height: 'toggle'
}, 300);
}
});
</script>
1 error in W3C
That error is not valid and is probably caused by something else.Rhyno3000 wrote:Yer as i said i know about the other errors but the last one is line 935 which relates to this code :
Code: Select all
<script type="text/javascript"> $(".forumlist").collapse({show: function(){ this.animate({ opacity: 'toggle', height: 'toggle' }, 300); }, hide : function() { this.animate({ opacity: 'toggle', height: 'toggle' }, 300); } }); </script>
Fix the other errors first and see what happens.