Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #645441

    How do i increase excert font size in grid layout in enfold theme?

    reference site is http://armstrongbooks.com/

    thanks for your support

    #645449

    Hey Armstrong88!

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

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }

    Best regards,
    Yigit

    #645453

    it does not increase the font size, it only reduce the excert text from 4 lines to 2 lines.

    i am not incresing or reducing excert line, what i need is to increase the “font size” of the excert

    #645455

    Hi,

    Oh, excuse me :)
    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-content-slider .slide-entry-excerpt { font-size: 20px; }
    

    Best regards,
    Yigit

    #645460

    thanks, it works

    #645464

    Hey!

    You are welcome!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How do i increase excert font in grid layout’ is closed to new replies.