Çırak Üye
İleti: 54
Teşekkür Sayısı: 0
Çevrimdışı
|
 |
« : 28 Mart 2009, 21:06:16 » |
|
 Style.css dosyasında en altına ekleyin.. .profil { color: #ffffff; padding-left: 8px; padding-top: 4px; padding-bottom: 4px; border : 1px solid #5f5f5f; margin-bottom: 2px; margin-left: 7px; margin-right: 7px; margin-top: 2px; background:#4a4a4a; font-family:Arial, Helvetica, sans-serif; margin-top }Display.template.php Dosyasında Bu Koddan Başlayarak // Show information about the poster of this message.Bu koda kadar silin.(Alttaki kod silinmeyecek) // Show the profile, website, email address, and personal message buttons.Sildiğiniz yere bu kodu ekleyin //profil başlangıç Forumqs // Show information about the poster of this message. echo ' <table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;"> <tr> <td bgcolor="#2b2b2b" width="16%" rowspan="2" style="overflow: hidden;"> <div align="center" width="100%" valign="middle" style="background: #525252; height: 20px;"><b>', $message['member']['link'], '</b></div><br /> <div class="smalltext">';
// Show avatars, images, etc.? if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image'])) echo '<center> <div style="overflow: auto; width: 100%;">', $message['member']['avatar']['image'], '</div></center><br />'; echo ' <div align="center" class="profil">', $message['member']['group_stars'], '</div>'; // Show the member's custom title, if they have one. if (isset($message['member']['title']) && $message['member']['title'] != '') echo ' <div class="profil">', $message['member']['title'], '</div>';
// Show the member's primary group (like 'Administrator') if they have one. if (isset($message['member']['group']) && $message['member']['group'] != '') echo ' <div class="profil">Rütbe : ', $message['member']['group'], '</div>';
// Don't show these things for guests. if (!$message['member']['is_guest']) { // Show the post group if and only if they have no other group or the option is on, and they are in a post group. if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '') echo '<div class="profil">Grup : ', $message['member']['post_group'], '</div>'; // Show online and offline buttons? if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest']) echo '<div class="profil"> Durum : ' . $message['member']['online']['text'] . '</div>';
// Show the member's gender icon? if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '') echo '<div class="profil"> ', $txt[231], ': ', $message['member']['gender']['image'], '</div>';
// Show how many posts they have made. echo '<div class="profil"> ', $txt[26], ': ', $message['member']['posts'], ' </div>'; // Uye ID echo'<div class="profil"><b>Üye No : </b>', $message['member']['id'], '</div>'; // Uye nereden echo '<div class="profil"> <b>Nerden : </b> ', $message['member']['location'], '</div>';
// Is karma display enabled? Total or +/-? if ($modSettings['karmaMode'] == '1') echo ' <div class="profil"> ', $modSettings['karmaLabel'], ' ', $message['member']['karma']['good'] - $message['member']['karma']['bad'], '</div>'; elseif ($modSettings['karmaMode'] == '2') echo ' <div class="profil"> ', $modSettings['karmaLabel'], ' +', $message['member']['karma']['good'], '/-', $message['member']['karma']['bad'], '</div>';
// Is this user allowed to modify this member's karma? if ($message['member']['karma']['allow']) echo '<div align="center" class="profil"> <a href="', $scripturl, '?action=modifykarma;sa=applaud;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.' . $context['start'], ';m=', $message['id'], ';sesc=', $context['session_id'], '">', $modSettings['karmaApplaudLabel'], '</a> <a href="', $scripturl, '?action=modifykarma;sa=smite;uid=', $message['member']['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';m=', $message['id'], ';sesc=', $context['session_id'], '">', $modSettings['karmaSmiteLabel'], '</a></div>';
// Show their personal text? if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '') echo '<div class="profil" align="center"> ', $message['member']['blurb'], '</div>';
// This shows the popular messaging icons. echo '<div class="profil"> ', $message['member']['icq']['link'], ' ', $message['member']['msn']['link'], ' ', $message['member']['aim']['link'], ' ', $message['member']['yim']['link'], '';
|