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

    Hi,
    I’d like to know how I can customize the style of masonry showing portfolio items.
    E.g.
    – Rounded corners
    – No arrow pointing up when excerpt is showing.
    – increase the nr of lines shown in the excerpt

    #750664

    Hey Rio1,
    Can you provide a link to the masonry page?

    Best regards,
    Jordan Shannon

    #750668

    and as for increasing the excerpt length:

     You can add this on functions.php, at the bottom:

    add_filter('avf_masonry_excerpt_length','avia_change_masonry_excerpt_length', 10, 1);
    function avia_change_masonry_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }<br><br>Change the $length value to something else. Default is 60. You also use the <!–more–> tag or specify the excerpt on Screen Options > Excerpt metabox.<br>

    Best regards,
    Jordan Shannon

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