In fullwidth blog articles (so no sidebar), I noticed the featured image isn’t fullwidth at 1210px. I’ve removed all custom css to see if there is a conflict of some sort, but nothing changes. Any idea what’s causing this to stay maxed at 1030px? Here’s an example:
Thanks in advance.
Please someone?
It works fine in the official Enfold demo, so I don’t understand what’s causing this, especially since it’s like this without any of my custom CSS. The surrounding div seems to be set correctly at 1210px, but the img and hyperlink itself are 1030px, why doesn’t it grow with the grid?
Please try following – in functions.php replace:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
with
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>360 ); // images for fullsize pages and fullsize slider
and regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/
Thanks, but it doesn’t seem to fix it. Obviously something else is preventing it from being larger than 1030. I tried to change the number in the line above to something like 500 (instead of 1210) and it does it well, but if I go larger than 1030 it just stays max at 1030. :(
Oops, it seems I was too fast. Forgot a step in the regenerate thumbnails plugin. It does work fine now!
Thanks again for the help, Dude!