hi,
How can I be able to change the title h3 for ContentSlider to another Hn?
Best regards
Hi allen,
You can do this by editing this file in the Enfold: enfold > config-templatebuilder > avia-shortcodes > contentslider.php and look for this code (line 475-477):
$output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup>" : '';
$output .= (!empty($link) && !empty($title)) ? "<a href='{$link}' $blank title='".esc_attr($title)."'>".$title."</a>" : $title;
$output .= !empty($title) ? '</h3>' : '';
replace all h3 with other heading tags :)
Best regards,
Nikko