You can change it at functions.php set_post_thumbnail_size( 300, 90, true );
and you also should change the style.css .newpost1,.newpost7… and the size of the images.
Thanks for your support.
You can change the color at style.css
But I don’t agreen with it because the colors are planned
Theme Author
wpart
(@wpart)
Maybe you can add the latest post out of the loop like this:
<?php
global $post;
$args = array( 'numberposts' => 1, 'offset'=> 1, 'category' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<div class="the_latest_post"><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_content(); ?>
</div></div>
<?php endforeach; ?>
You can put it before <?php $i=1;if (have_posts().
Thanks for your supportHave fun.