I was looking for the same thing and found this post:
I’m no expert though as I’m learning myself.
Nice site btw and cute girl. 🙂
http://wordpress.org/support/topic/date-position
Originally posted by: Valuxes
Look in your theme’s index.php and locate the_title and the_time (or the_date).
You want to move all the code pertaining to the_time or the_date to after the_title.
For example, in the following code:
<div><h2 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2><?php the_time(‘F js, Y’) ?></div>
I moved <?php the_time(‘F js, Y’) ?> to after everything between the <h2> and </h2> tags (which contain the_title).
I haven’t had any problems so I’m wondering if it’s a php/mysql problem as in what version is installed on your host.