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
Hey Rio1,
Can you provide a link to the masonry page?
Best regards,
Jordan Shannon
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