KapChat Not Showing Last Line of Text

Hi, I have a problem with KapChat cutting off the last line of my chat, either on new lines or long messages. (e.g. http://imgur.com/a/V6ofA) As you can see in the second image, at 1060p height, the chat box cuts off mid-line leaving only the chat badges of the last message visible.

I’ve tried fiddling with the CSS with what I could find through Google, but to no avail.

Here is my CSS - http://pastebin.com/VCqsN8PK

You can’t see the sliver of badges at 100p increments of height, but it still cuts off the last line of chat. I would like to have the last line fit in the bottom of the chat box.

height: calc(104% - 10px);

You’re setting the height of the chat box to over 100% and subtracting 10px from it. Any height > 100% is out of bounds.

Thanks, this fixed it:

height: calc(100%);

Sorry for the late reply. I don’t know how it got set to 104%; I don’t remember changing it which is why I left the line as I had found it.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.