1 aestas May 20, 2005 04:02
3 aestas May 20, 2005 06:50
woo! I fixed it!!! The problem was in the
<td width=390 class=tl><p align="right"><b>
<?php // ------------------------------------ START OF POSTS ----------------------------------------
if( isset($MainList) ) while( $Item = $MainList->get_item() )
{
$Item->issue_date('d F, Y');
?> • <?php $Item->title(); ?></b></td></tr>
section. I changed it to ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php locale_lang() ?>" lang="<?php locale_lang() ?>">
<?php // ------------------------------------ START OF POSTS ----------------------------------------
if( isset($MainList) ) while( $Item = $MainList->get_item() )
{ ?>
<table width="390" cellpadding="2">
<tr>
<td width=390 class=tl><p align="right"><b>
<?php $Item->issue_date('d F, Y'); ?> • <?php $Item->title(); ?></b></td></tr>
<tr><td width=390 class=tf>
<div align="justify"><img src="img/icon_minipost.gif" width="12" height="9" border="0"> <?php the_author() ?> •
<?php
$Item->issue_time();
echo ' ';
$Item->wordcount();
echo ' ', T_('words'), ' ';
?>
<?php $Item->content(); ?></div></td></tr></table>
<?php } // ---------------------------------- END OF POSTS ------------------------------------ ?>
AND IT WORKS! WOO! Thanks for your help, it helped steer me to the problem! :-D
Unfortunately, there's not a quick fix for your problem, because there are several issues with your page. The biggest is that you've copied code from the top of one page, and put it into the middle of another page. As a result, you've got multiple HTML and HEAD tags, and your doctype declaration is in the middle of the page (it should be at the very top).
It would take a while to go line by line through the errors, but here is a good way to start:
Step 1: Take these two lines and put them at the very top of your page.
Step 2: Remove the following lines completely
Step 3: Convert all the HTML tags in the other parts of your page to be all lower-case (required for step 4)
Step 4: Go to http://validator.w3.org/detailed.html and enter the URL to your page. It will validate your site and tell you where you have tags that are not closed, etc.
Sorry I couldn't provide a simpler solution, but I hope this is helpful.