XF 1.5 Message Element Help

Xyphien

Active member
Untitled.webp

In the first image the message element goes down into the footer, and in the second picture it doesn't How do I change this? I want it to display like the first image, and instead it now displayed like the second image.
 
Best I can think of is this for now..
Code:
.messageList .message
{
    display: flex;
}

.messageUserInfo
{
    display: inline-flex;
}

.message .messageInfo
{
    margin-left: 10px !important;
}
but looks weird to me...
 
Best I can think of is this for now..
Code:
.messageList .message
{
    display: flex;
}

.messageUserInfo
{
    display: inline-flex;
}

.message .messageInfo
{
    margin-left: 10px !important;
}
but looks weird to me...
That fixed my first problem, but now I'm getting this weird thing:

upload_2015-7-23_17-10-30.webp

I want the posts to remain the same length, not based on the character amount.
 
Top Bottom