Hi,
I’d like to have different blog layouts depending on context :
for individual post view => single author, big preview pic
for blog list view => single author, small preview pic
problem is when I filter the blog list viewto show a specific category : the layout switches to “single author, big preview pic” layout.
Any clue ?
Hey totofunk!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.single-post .single-small.with-slider .small-preview { width: 100%; }
Then find following line in functions.php file
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
and change it to
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270);
After that you need to remove and re-upload your featured images
Cheers!
Yigit
seems to work.
Thanks !