Hi,
I made 2 changes to achieved that.
1- I added this css to your custom css option
.home .recent-posts .figure-wrap .date-overlay {
width: 90px;
}
2-
function sf_custom_date_figure_overlay() {
global $post, $sf_options;
$remove_dates = $sf_options['remove_dates'];
if ($remove_dates) {
return;
}
$post_date = get_the_date('d-m-Y');
return '<div class="date-overlay narrow-date-block"><span class="month">'.$post_date.'</span></div>';
}
add_filter( 'sf_before_recent_post_thumb', 'sf_custom_date_figure_overlay' );
function sf_remove_filters(){
remove_filter( 'sf_before_recent_post_thumb', 'sf_date_figure_overlay' );
}
add_action('init', 'sf_remove_filters');
Hope it helps.
-Rui