Hi,
what is the easiest way to change the Icon Box Title from H3 to just normal text?
Thanks!
Hi cberentz!
Please go to Enfold/config-templatebuilder/avia-shortcodes folder and open iconbox.php file and find
$output .= "<h3 class='iconbox_content_title' {$markup} {$title_styling}>".$title."</h3>";
and change H3 tags as needed
Best regards,
Yigit
I allready had the ideo of changing these Tags, but couldn’t figure out what the tag for plain text is. Maybe you can help me out on this one ;)
Hi!
You can use ‘div’ tag instead of ‘h3’ tags. So it would be
$output .= "<div class='iconbox_content_title' {$markup} {$title_styling}>".$title."</div>";
you may need to adjust CSS. You can do so by adding following code to Quick CSS field in Enfold theme options under General Styling tab
.iconbox_content_title { font-size: 20px; }
Cheers!
Yigit
That’s it. Thank you!