anyone? 
I'm thinking it's the pager... not pulling in when you get on page 2 of the blog. ?
Here is the page code for the Blog page
<?php /*
Template Name: Blog
/
get_header();
if (have_posts()) : the_post();
$pager = get_option(‘phi_blog_pager’);
$sidebarposition = get_option(‘phi_sidebarposition’);
echo ‘<div class=”content-default content-’.$sidebarposition.’ equalize?>’;
echo phi_blog(’’,false, $pager);
echo ’’;
get_sidebar();
endif;
get_footer();?>
I’m not a PHP person…. would the echo statement need to be “true” to pull the pager in to the other pages versus only the main blog page?
Here’s the CSS in the template….
PAGER
*/
#pager { float:left; clear:both; display:inline; min-width:570px; font-size:10px; line-height:20px; margin: 0 0 20px 0 }
#pager ul { margin:16px 0 0; padding:0; list-style:none; maxpage-width:570px; display:block; }
#pager ul li { clear:none; float:left; display:inline; padding:0px; margin-right:0px; text-align:center; font-size:10px; }
#pager ul li a { width:10px; height:10px; padding:0px 5px 10px 5px; line-height:20px; margin:0px; float:left; clear:none; display:block; text-decoration:none; color:#777; }
#pager ul li a:hover { color:#777; }
#pager ul li.current a { background-color:#333; color:#fff; }
#pager ul li a span { padding-top:0px; text-align:center; display:block; }
#pager .pages { float:left; margin-right:10px; }
/