Mores,
Thanks for your repsonse. Im glad someone could finally get back at me on this.
I couldn't get any of the random post code to work on the thread link you provided, BUT your code:
<?php query_posts('showposts=999&random=true');?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div>
<h1><?php the_title(); ?> (<?php the_time('j. F Y'); ?>)</h1>
<p><?php the_content(); ?></p>
</div>
<?php endwhile; else: ?><p>Oops, no posts!</p><?php endif; ?>
Worked fine...although it shows date, description, and other elements of the posts I don't need. I am far from having programmer knowledge, but do know enough to manipulate and follow directions. Looking at your code there, can you let me know how to allow only the "title" and the "pic" to be viewable and nothing else? I would also need to resize the pic to because it is fairly large. Was looking at around 25X25 pixel thumbnail.