
Re: Its Any Way To Add This Borders ?
I have 78 unread messages, I cannot be everywhere
Open templates/*/xs/xs_topic.tpl
Find $prev_id = $postrow_item['U_POST_ID'];
ob_start();
After, add:
// BEGIN - KasLimon postdata boxes
if (!empty($postrow_item['POSTER_POSTS'])) $postrow_item['POSTER_POSTS'] = '<div id="postdetails">' . $postrow_item['POSTER_POSTS'] . '</div>';
if (!empty($postrow_item['POSTER_FROM'])) $postrow_item['POSTER_FROM'] = '<div id="postdetails">' . $postrow_item['POSTER_FROM'] . '</div>';
if (!empty($postrow_item['POSTER_JOINED'])) $postrow_item['POSTER_JOINED'] = '<div id="postdetails">' . $postrow_item['POSTER_JOINED'] . '</div>';
// END - KasLimon postdata boxes
Open css file
At the end of the file, add:
#postdetails
{
border:1px solid #0033FF;
}
You can see it working
here
Greetings!