AI Search
Classic Search
Notifications
Clear all
How-to and Troubleshooting - wpForo 2.0
3
Posts
2
Users
2
Reactions
688
Views
Dec 06, 2024 12:49 pm
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 2:22 pm
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 5:19 pm
Awesome Tutrix! Thank you so much! It works perfectly. You are the best.
