It was at the beginning of the first loop. I think I figured out the problem. I copy and pasted all of the code from page.php into index.php and added
<?php query_posts('category_name=Homepage&showposts=3'); ?>
before the loop.
Thanks for the reply.
I put it in the beginning before
<?php while ( have_posts() ) : the_post(); ?>
I also just found out that if I put
<?php query_posts('category_name=Homepage&showposts=3'); ?>
on single.php and load a single post it returns exactly what I want to show. Also, if i put it on page.php and load a single page it returns what I need. So it must be an issue with the loop code or other homepage code?
Any Ideas?