Hi,
The following code loads up page Mytest successfully in Safari, Firfox and Netscape on Mac. So does it in Netscape on Windows XP.
However, it gives out "File Not Found" error when loading the page in Internet Explorer 7 on Windows XP. Could anyone help me on the following issue? Thanks.
<TR ID="opt_2"><TD><div><div class="post"><A href="http://noname.com/?page_id=19"
ONMOUSEOVER="hiLite('2')" ONMOUSEOUT="unLite('2')" ONCLICK="optClick('2')"
title="MYTEST" <font color="#FFFFFF">Mytest</font>
</A></div></div></TD></TR>
================================================
Index.php:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
....
<div class="post">
<div class="title">"><?php the_title(); ?></div>
</div> <!-- end of post -->
<?php endwhile; else: ?>
<div class="post">
<div class="title">Page Not Found</div>
</div>
<?php endif; ?>
========================================