By Haki Saki on Tuesday, 10 January 2017
Posted in General
Replies 3
Likes 0
Views 131
Votes 0
Is it possible for images that are associated with group posts to be enlarged to fit the width of the stream like youtube videos are (for example)? (attached) Thoughts?
The reason why we do not show full width of the link image is because some of the image is not big enough, so we decided to make all the link image display consistently. If we make it full width, mean if those link image is not big enough, it will display like stretch the image, and the image become ugly.

By the way, if you would like to achieve this, try apply this following css into your template css file and see how it goes.

#es .es-stream-embed.is-link .es-stream-embed__cover img {
max-height: 100% !important;
max-width: 100% !important;
width: 100% !important;
}
·
Tuesday, 10 January 2017 10:59
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you, I have applied those changes and I will see if that works over time. An immediate problem I found after adding that code is that some post's text are running over the module margins (see attached) Thoughts?
·
Wednesday, 11 January 2017 02:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Try apply this following css and see how it goes?


#es .es-stream-embed.is-link .es-stream-embed__meta {
word-break: break-all !important;
}
·
Wednesday, 11 January 2017 11:02
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post