Tagged: title
Hello,
1) How move title up ? and little biger ?
2) We need squere format 195×195 by default, how change 180×180 to 195×195 ?
Thank you
no idea?
Hey,
Thanks for contacting us!
1- Please go to Enfold theme options > Blog Layout > Blog Styling and choose “Modern Business”
2- Please add following code to Functions.php file of your child theme
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
function enfold_customization_modify_thumb_size( $size ) {
$size['square'] = array('width'=>195, 'height'=>195);
return $size;
}
Then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
Yigit
Super, Thank you :)