Hi,
On the front pages? Images is vertical and horisontal.
Customise / Front Page Content / Display a custom heading for your blog.
<article id="post-<?php the_ID(); ?>" <?php post_class( array('post-upper', 'grid-item') ); ?>>
<div class="post-inner post-hover">
<div class="post-thumbnail">
<a class="post-inner" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<?php hu_the_post_thumbnail('thumb-standard'); ?>
</a>
</div><!--/.post-thumbnail-->
<div class="post-content">
<div class="featured-bar"></div>
<h2 class="post-title entry-title">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</h2>
</div><!--/.post-content-->
</div><!--/.post-inner-->
</article><!--/.post-->
.content .page, .content .post {
float: left;
padding: 10px;
}
article.post-upper
{
width: 200px;
height: auto;
}
Almost there, but not quite.