Is it possible to change the Title font of the accordion to the H3 header?
T
You can simply adjust the text size with CSS: http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
#top .av_toggle_section .toggler {
font-size: 18px !important;
}
you can add other properties as well:
http://www.w3schools.com/css/css_text.asp
http://www.w3schools.com/css/css_font.asp
Hi!
Please go to Enfold/config-templatebuilder/avia-shortcodes folder and open toggles.php file and find
$output .= ' <p data-fake-id="#'.$toggle_atts['custom_id'].'" class="toggler '.$titleClass.'" '.$markup_title.'>'.$toggle_atts['title'].'<span class="toggle_icon">';
$output .= ' <span class="vert_icon"></span><span class="hor_icon"></span></span></p>';
and change it to
$output .= ' <h3 data-fake-id="#'.$toggle_atts['custom_id'].'" class="toggler '.$titleClass.'" '.$markup_title.'>'.$toggle_atts['title'].'<span class="toggle_icon">';
$output .= ' <span class="vert_icon"></span><span class="hor_icon"></span></span></h3>';
Cheers!
Yigit