MyBB Community Forums

Full Version: Extend the mini profile to the full height of the message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! How can I extend the mini profile to the full height of the message? 
https://ibb.co/Wxsn0Th
If you know what i mean.
Hi, you can do following:

1st step:
Go to ACP -> Templates & Style -> Templates -> {Theme name} -> Post Bit Templates -> postbit_classic

Find following code:
<div class="post classic {$unapproved_shade}" style="{$post_visibility}" id="post_{$post['pid']}">
<div class="post_author scaleimages">

and put following in between those lines:
<div class="post_flex">

so you will have:
<div class="post classic {$unapproved_shade}" style="{$post_visibility}" id="post_{$post['pid']}">
<div class="post_flex">
<div class="post_author scaleimages">

2nd step:
Find following in same template:
<div class="post_controls">

Above (before) that code put:
</div>



3rd step:
Go to ACP -> Templates & Style -> Themes -> {Theme name} -> global.css -> Edit Stylesheet: Advanced Mode
Put following code seomewhere inside:

.post_flex {
	display: flex;
}

That should solve it