By Chris Egle on Monday, 27 February 2017
Posted in General
Replies 3
Likes 0
Views 130
Votes 0
It looks like Foundry.js and the Nickel theme CSS have different ideas of the width of the author images.

Nickel CSS:

div#fd.eb .eb-post-top .eb-avatar img {
width: 40px;
height:40px;
...}


Foundry looks to be setting the width to 50px inline. The result? The image looks "squashed" - 50px wide by 40px high. I'm okay with overriding this with a CSS fix (height:50px), but I thought you'd like to know.
Hello Chris,

Thanks for the input on this, I believe this is a bug and since we are already working on EasyBlog 5.1, will create a ticket for this internally.

Temporarily, what you can do to fix this is to add the following css overrides,

[gist]
body div#fd.eb .eb-post-top .eb-avatar img {
height: 50px;
}
[/gist]
·
Tuesday, 28 February 2017 01:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for the specific CSS rule so I don't have to test as much.
·
Friday, 03 March 2017 23:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Saturday, 04 March 2017 09:26
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post