Tagged: single post page
Hi.
I would like a squarer image (3:2) in single post page.
Secondly, I’d like not to have a link (overlay or other) on the image.
Below all the data.
Thanks.
Regards,
Piero
Hi guys. Please, any help?
Thanks.
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.single .big-preview.single-big {
pointer-events: none;
}
Then add following code to Functions.php file of your child theme in Appearance > Editor
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
function enfold_customization_modify_thumb_size( $size ) {
$size['entry_with_sidebar'] = array('width'=>1210, 'height'=>560);
return $size;
}
adjust the size as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
Yigit
Hi. Yigit, many thanks for your attention and magic advice.
Sorry for my caution and ignorance, but to use “Regenerate thumbnails” I don’t risk to modifiy the other thumbnails too?
It would be a nightmare!!!
Cheers,
Piero