Well, the biggie is having two <head> sections on each page.
Each page starts <head><title>PAGE TITLE</title></head>, then has a PHP include(), which itself contains the <!DOCTYPE> and a second <head>. While this works, it is extremely messy and syntactically incorrect.
To fix, you need to replace the first <head> with <?php $page_title = "PAGE TITLE" ?>, then in the included file, inside the <head>, put <title><?php echo @$page_title ?></title>. That would be syntactically correct.
Another biggie is that you always have "Pokemon" when it should be "Pokémon" (which outputs "Pokémon")
btw, SR sent me the source files so I can translate into French. If you do change any files, let me know.
|