pavelk2 / social-feed

JavaScript plugin that shows a user feed from the most popular social networks
http://pavelk2.github.io/social-feed-example/
MIT License
963 stars 304 forks source link

Social Feed in colums #273

Open papazetis opened 6 years ago

papazetis commented 6 years ago

Hi.

Can I use social feed in columns? I need three columns that the 1st is for Twitter, the 2nd for FB and the 3rd for Instagram.

I want in each column to show only 2 posts for each social network.

Is it possible to do it?

HartLarsson commented 6 years ago

No, because the script collect all feeds in one stream

mutiullah7 commented 6 years ago

@papazetis you can make it masonry like stream using css the column-count property like

.social-feed-container {
    column-gap: 0 !important;
    column-count: 4;
    -webkit-column-count: 4;
    -moz-column-count: 4;
}

it will credate 4 column feed

HartLarsson commented 6 years ago

yes he could but he cannot split in columns "one column-per-social" as he asked

mutiullah7 commented 6 years ago

mmm hmmm, you are right @HartLarsson