Hi, On http://flashvideogames.info, in the section Latest Games Added, I would like to replace a game/link with an image ad/link of the size as a game link. I believe the change has to be made to the code (excerpt) below. I will pay a fixed fee for the successful completion of this job. <table width="669" cellpadding="0" cellspacing="0" align="center" border="0" > <tr> <td height="39" background="<?php bloginfo('stylesheet_directory'); ?>/images/sl1.gif"><table width="669"> <td style="padding-left:15px; padding-bottom:10px;" ><h1 > <li>Latest Games Added</li> </h1></td> </table></td> </tr> <tr> <td background="<?php bloginfo('stylesheet_directory'); ?>/images/sl2.gif"> <table width="666" cellpadding="0" cellspacing="0" align="center" style="padding-left:12px; "> <td><?php if (have_posts()) : ?> <?php $count=7; while (have_posts()) : the_post(); if(!($firstpost == $post->ID)) : ?> <?php if($count % 7== 0) echo '<div class="left">'; else echo '<div class="right">'; ?> <div class="border" > <center> <a href="<?php the_permalink() ?>"> <img src="<?php bloginfo( 'template_directory' ); ?>/timthumb.php?src=<?php echo get_post_meta( $post->ID, "thumbnail_url", true ); ?>" alt="<?php the_title(); ?>" class="border2" width="70" height="70" /> </a> </center><center> <?php the_title2('', '...', true, '12') ?> </center> </div> </div> <?php if($count % 7 != 0) echo '';?> <?php $count++; endif; ?> <?php endwhile; ?> <?php endif; ?> </td> </table> </td> </tr> PHP: