2016-02-05, 02:02 PM
i'm trying to add 2 borders on postbit, so far i got this:
![[Image: 12674170_1005707369502086_2028703379_n.j...e=56B5034F]](https://camo.mybb.com/aab1bc2c03d6a6d453f3e97b48d4b04ff66d35f8/68747470733a2f2f73636f6e74656e742d6d6164312d312e78782e666263646e2e6e65742f6870686f746f732d786c74312f762f7433342e302d31322f31323637343137305f313030353730373336393530323038365f323032383730333337395f6e2e6a70673f6f683d353266376363363439386238663763313266313262323330373233623133373026616d703b6f653d3536423530333446)
i edited postbit_classic with this (pls note the 2 divs with borders bellow):
i edited postbit_classic with this (pls note the 2 divs with borders bellow):
{$ignore_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">
<div class="author_information">
<div style="border: 1px solid #3c699c; padding:2px;"><strong><span class="largetext">{$post['profilelink']}</span></strong><br /></div>
</br>
<div style="border: 1px solid #3c699c; padding:2px;">{$post['useravatar']}
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
</span>
</div>
</div>
<div class="author_statistics">
{$post['user_details']}
</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']}</span></span>
{$post['subject_extra']}
</div>
<div class="post_body scaleimages" id="pid_{$post['pid']}">
{$post['message']}
</div>
{$post['attachments']}
{$post['signature']}
<div class="post_meta" id="post_meta_{$post['pid']}">
{$post['iplogged']}
</div>
</div>
<div class="post_controls">
<span class="float_left" style="padding-left: 3px; padding-top: 7px; display: inline-block;">{$post['onlinestatus']}</span>
<div class="postbit_buttons author_buttons float_left">
{$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>
</div>
I've tried to make the 2nd border to end at Warning level, but I can't get it done. Is there any other way of doing this?