Tagged: masonry
Hi
I would like to know if it’s possible with enfold to make a presentation like this : portfolio with articles + articles under (begin + picture)
Hey sandra1307,
You should be able to achieve something similar yes, did you try the Masonry and Blog Posts elements?
Best regards,
Rikard
Thank you for your advices
The masonry is good, I have a little question : I would like to remove the date, is it possible ?
For the “magazine” under masonry, is it possible to setting an extrait under the title ?
Thank you
Hi,
Yes, please try the following in Quick CSS under Enfold–>General Styling:
.av-masonry-date {
display:none !important;
}
Best regards,
Rikard
It works ! thank you !
For the “magazine” under masonry, is it possible to have a bigger picture and setting an extrait under the title ?
Hi,
I’m sorry but what do you mean by “extrait”? Is it excerpt? Please follow this link.
// https://kriesi.at/support/topic/magazin-element-visible-extract/#post-523479
Add this in the functions.php file in order to use a bigger image.
add_filter('avf_magazine_settings', 'avf_magazine_settings_mod', 10, 2);
function avf_magazine_settings_mod($atts, $magazine){
$atts['image_size']['small'] = 'portfolio';
$atts['image_size']['big'] = 'entry_without_sidebar';
return $atts;
}
Best regards,
Ismael