Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #542873

    Hi there!

    How can I increase the size of the excerpt in magazine element?

    http://portalkairos.org/err-arq/portalkairos_erro_09.jpg

    Thanks

    #542988

    Hey Wellington!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .av-magazine-content { font-size: 14px; }

    Regards,
    Yigit

    #543455

    Yigit,
    I wanted to increase the number of characters. Not the font.

    Thanks

    #543612

    Hey!

    Please add following code to functions.php file in Appearance > Editor

    add_filter('avf_magazine_excerpt_length','avf_magazine_excerpt_new_lenght', 10, 1);
    function avf_magazine_excerpt_new_lenght($excerpt) {
    $excerpt = 100;
    return $excerpt;
    }

    Cheers!
    Yigit

    #543842

    Works!
    Thanks. Good job.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Excerpt in magazine’ is closed to new replies.