Replace all occurrences in the content.php file. As for the section title element, add the following code to the child theme and replace all tag names as you need.
function basel_shortcode_title( $atts ) {
extract( shortcode_atts( array(
'title' => 'Title',
'subtitle' => '',
'after_title'=> '',
'link' => '',
'color' => 'default',
'style' => 'default',
'size' => 'default',
'subtitle_font' => 'default',
'align' => 'center',
'el_class' => '',
'css' => ''
), $atts) );
$output = $attrs = '';
$title_class = '';
$title_class .= ' basel-title-color-' . $color;
$title_class .= ' basel-title-style-' . $style;
$title_class .= ' basel-title-size-' . $size;
$title_class .= ' text-' . $align;
$separator = '<span class="title-separator"><span></span></span>';
if( function_exists( 'vc_shortcode_custom_css_class' ) ) {
$title_class .= ' ' . vc_shortcode_custom_css_class( $css );
}
if( $el_class != '' ) {
$title_class .= ' ' . $el_class;
}
$output .= '<div class="title-wrapper ' . $title_class . '">';
if( $subtitle != '' ) {
$output .= '<span class="title-subtitle font-'. esc_attr( $subtitle_font ) .'">' . $subtitle . '</span>';
}
$output .= '<div class="liner-continer"> <span class="left-line"></span> <span class="title">' . $title . $separator . '</span> <span class="right-line"></span> </div>';
if( $after_title != '' ) {
$output .= '<span class="title-after_title">' . $after_title . '</span>';
}
$output .= '</div>';
return $output;
}
add_shortcode( 'basel_title', 'basel_shortcode_title' );
Regards