Hey there. Loving this theme!!
One issue i’m running into is importing blog posts with full sized image sizes.
On my previous theme I simply inserted full sized images into the post, when I converted to enfold for some reason it shrunk them from ~900px to 600px. Is there anyway to override this preset so I don’t have to go back through every post and reinsert all the images?
Here is an example for if it helps: http://www.adaytoadore.net/2013/06/allie-jacob-union-station-kansas-city-wedding-photography/
As you can see everything looks squished, whereas before it was all full width. Your help is much appreciated!
The width of the blog is limited to 600px. If you want to expand it use following css code
#top .fullsize .template-blog .post .entry-content > * {
max-width: 900px;
}
#top .fullsize .template-blog .post .entry-content {
max-width: 900px;
}
Obviously you can use a different width value too :)
That did the trick! Thank you kindly good dude!