Tagged: 

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

    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)

    http://www.thegirlsnextdoor.fr/category/people/

    #705169

    Hey sandra1307,

    You should be able to achieve something similar yes, did you try the Masonry and Blog Posts elements?

    Best regards,
    Rikard

    #707197

    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

    #707584

    Hi,

    Yes, please try the following in Quick CSS under Enfold–>General Styling:

    .av-masonry-date {
      display:none !important;
    }

    Best regards,
    Rikard

    #707699

    It works ! thank you !

    For the “magazine” under masonry, is it possible to have a bigger picture and setting an extrait under the title ?

    #708556

    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

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