The content width in Espied is set to 552 px in functions.php:
if ( ! isset( $content_width ) ) {
$content_width = 552; /* pixels */
}
You can override this value by doing a few things:
First, create a child theme, so your tweaks won’t be overwritten when updating the theme. Here are some guides in case you haven’t made one before:
http://codex.ww.wp.xz.cn/Child_Themes
http://op111.net/53/
http://vimeo.com/39023468
Once your child theme is set up, create a functions.php file if you don’t already have one, and add this:
<?php
if ( isset( $GLOBALS['content_width'] ) )
$GLOBALS['content_width'] = 1272;
If your functions.php already has an opening php tag, don’t add another.
If your image still doesn’t appear at 1272, you may need to run the Regenerate Thumbnails plugin to resize your existing images.
Let me know how it goes.
Hi,
I still got the problem after trying the two methods above.
This is my url. No matter what size I uploaded, the image will just be 552px wide. Can you please help me take a look at it?
Thanks!!!