I don't know man, I think it has to do with the functions.php file because that's the error I keep getting. It keeps pointing at the last line of the file telling me it has an unexpected $end. Here's what my functions.php file looks after I've modified it:
'<?php
//Custom Theme Settings
if ( function_exists('register_sidebars') ) {
register_sidebars(1, array(
'name' => __( 'Primary Sidebar'),
'description' => __( 'Area One Primary Sidebar' ),
'before_title' => '',
'after_title' => '',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => ''
) );
register_sidebars(1, array(
'name' => __( 'Secondary Sidebar'),
'description' => __( 'Area Two Secondary Sidebar' ),
'before_title' => '',
'after_title' => '',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => ''
) );
add_theme_support( 'automatic-feed-links' );
register_nav_menus( array(
'primary' => __( 'Primary Navigation', 'valentine' ),
) );
if ( ! isset( $content_width ) ) $content_width = 640;
if ( is_singular() ) wp_enqueue_script( "comment-reply" );
add_theme_support( 'post-thumbnails' );
?>'
I don't understand what's wrong with the last line. If you start the file with <?php you have to end it with ?>. It has to be something in those two register sidebars functions because that's the only thing I've changed from the original functions.php.
Sorry if I'm blatently doing something wrong, web coding obviously isn't my strong point.