Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #269635

    Is it possible to change the Title font of the accordion to the H3 header?

    T

    #269654

    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

    #270021

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.