So I've used this code from another thread to make a blog post page (sample: http://letsreminisce.ca/test1/335 ) wider because I wanted to feature larger images on my blog.
.postid-335 .content .box {
min-width: 430px;
width: 800px;
}
I've also modified function.php to control the size of my pictures so that landscape images are not TOO wide and portrait images not TOO tall.
$avia_config['imgSize']['blog'] = array('width'=>800, 'height'=>600, 'crop'=>false); // image for blog posts
The problem that I have now is that since this theme simply uses the first image in a post as the featured image they don't look right on the main Blog page, which I left normal (sample: http://letsreminisce.ca/blog )
Is there away to make it so that the post's featured image on the main blog page is a different size than the images in the post?
Also how do I get the images to be centered in the post? the alignment feature doesn't seem to work.














