1 error in W3C

Modifications for phpBB3.
Try the Mods here and share Your own Mods
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

1 error in W3C

Post by Rhyno »

1 error in W3C

Post by Stoker »

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.

1 error in W3C

Post by Rhyno »

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

Post by Stoker »

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>
That error is not valid and is probably caused by something else.
Fix the other errors first and see what happens.