See my website here www.insanegam3r.com At the top you see an image of a PSP which is currently a decent size but I have also added images that cover the whole page. Here is the code for what happens. <?php if( get_post_meta($post->ID, "thumb", true) ): ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><img style="padding:5px 0px 2px 0px;" src="<?php echo get_post_meta($post->ID, "thumb", true); ?>" alt="<?php echo get_post_meta($post->ID, "Theme Name", true); ?> Thumbnail" /></a> <?php else: ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><img style="float:left;margin:0px 5px 10px 0px;" src="<?php bloginfo('template_url'); ?>/images/defaultimage.jpg" alt="Default Thumbnail" /></a> <?php endif; ?> Code (markup): I am wondering if anyone knows how to put restrictions on the image size. So if I were to have a bigger image than the box it would resize so it doesn't go over. Your help is appreciated. Thanks, Ash