Notifications
Clear all

Style [Solved] How to make .wpforo-post-content-bottom height uniform

3 Posts
2 Users
2 Reactions
136 Views
Posts: 18
Topic starter
(@systemcrack)
Eminent Member
Joined: 2 years ago

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
Tutrix
Posts: 1526
(@tutrix)
Noble Member
Joined: 5 years ago

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 😉 

Posts: 18
Topic starter
(@systemcrack)
Eminent Member
Joined: 2 years ago

Awesome Tutrix! Thank you so much! It works perfectly. You are the best.