Hi Tony A,
Here is the code i add to function.php:
add_filter( ‘astra_widgets_init’, ‘widget_title_tag’, 10, 1 );
function widget_title_tag( $atts ) {
$atts[‘before_title’] = ‘<h3 class=”widget-title”>’;
$atts[‘after_title’] = ‘</h3>’;
return $atts;
}