(2018-07-15, 06:11 PM)Wires Wrote: Have you tried what chack suggested? If so, what's happening? Does the div show up? Are the buttons responsive? Please elaborate.
here is what is happening with chack's edit
(2018-07-15, 08:22 PM)Serpius Wrote:(2018-07-15, 08:11 PM)Livewire Wrote:Quote:In the default MyBB theme? I don't see one.
In fact, I don't see one in my custom theme. The Reply button is at the bottom as usual.
Lol.
There is one on top and bottom.
https://i.imgur.com/eqj9anh.png
Not sure what you were looking at, but here at MyBB.com, I don't see a reply button at the top in the default MyBB theme.
look way top
(2018-07-15, 08:30 PM)Livewire Wrote: @8guawong
Paste this..
<div class="post_controls"> <div class="postbit_buttons author_buttons float_left"> {$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']} </div> <div class="postbit_buttons post_management_buttons float_right"> {$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']} </div> </div>
After
<div class="author_statistics"> {$post['user_details']} </div>
If you have a custom theme may require some css, If you need help shoot me a PM with test account.
Should look like this https://i.imgur.com/1aZcyW6.png
like i stated above i'm using the classic post layout
here is what it looks like with your suggestion
i've played around with the placement of the post control button code and the best i've got is
what my postbit_classic looks like
{$ignore_bit}{$deleted_bit}
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div class="post classic {$unapproved_shade}" style="{$post_visibility}" id="post_{$post['pid']}">
<div class="post_author scaleimages">
{$post['useravatar']}
<div class="author_information">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['threadstarter']}
{$post['userstars']}
{$post['groupimage']}
</span>
</div>
<div class="author_statistics">
{$post['user_details']}{$post['thanks_count']}{$post['thanked_count']}{$post['thx_meter']}{$post['newpoints_postbit']}
</div>
</div>
<div class="post_content">
<div class="post_head">
{$post['posturl']}
{$post['icon']}
<span class="post_date">{$post['postdate']} <span class="post_edit" id="edited_by_{$post['pid']}">{$post['editedmsg']}{$post['edithistory']}</span></span>
{$post['subject_extra']}
<div class="post_controls">
<div class="postbit_buttons author_buttons float_left">
{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}
</div>
<div class="postbit_buttons post_management_buttons float_right">
{$post['thanks']}{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_mention']}{$post['button_report']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
</div>
</div>
</div>
<div class="post_body scaleimages" id="pid_{$post['pid']}">
{$post['thx_counter']}<div id="thxpid_{$post['pid']}">{$post['message']}</div>{$post['thx_list']}
</div>
{$post['attachments']}
{$post['signature']}
<div class="post_meta" id="post_meta_{$post['pid']}">
{$post['iplogged']}
<div class="float_right">
{$post['poststatus']}
</div>
</div>
{$post['input_editreason']}
</div>
<div class="post_controls">
<div class="postbit_buttons author_buttons float_left">
{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}
</div>
<div class="postbit_buttons post_management_buttons float_right">
{$post['thanks']}{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_mention']}{$post['button_report']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
</div>
</div>
</div>