Tagged: excerpt
Hi there!
How can I increase the size of the excerpt in magazine element?
http://portalkairos.org/err-arq/portalkairos_erro_09.jpg
Thanks
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
Yigit,
I wanted to increase the number of characters. Not the font.
Thanks
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
Works!
Thanks. Good job.