How-to and Troubleshooting
3
Posts
2
Users
2
Reactions
136
Views
Dec 06, 2024 8:49 am
Hello everyone,
while I was customizing the forum css I noticed that the bottom of the posts is not the same for all users. In fact, it varies in height depending on whether there are likes or a signature.
I don't like the resulting effect at all. I tried playing with the css #wpforo-wrap .wpfl-2 .wpforo-post .wpforo-right .wpforo-post-content-bottom to try to fix it, but I didn't succeed in my intent.
Is there a way to make the bottom of the post the same height regardless of the factors mentioned above?
2 Replies
Dec 06, 2024 10:22 am
Hi @systemcrack
In the post.php of layout 2, add a new div for the textarea
directly after
<div class="wpforo-post-content">
add
<div class="post-textarea" style="min-height: 240px;"><!-- start-post-textarea-->
and before
<?php if( wpforo_setting( 'profiles', 'signature' ) ): ?>
add
</div><!-- end-post-textarea-->
change the 240px to the value you want 😉
Dec 06, 2024 1:19 pm
Awesome Tutrix! Thank you so much! It works perfectly. You are the best.