SMF 2.1 BETA 3 Profil alanı Replikacep.com Tarzı

Başlatan tekyürek, 31 Mar 2017, 00:24

« önceki - sonraki »

0 Üyeler ve 2 Ziyaretçiler konuyu incelemekte.

tekyürek



yepyeni bir profil alanı   ruh halim moduda profil alanının  içinde dahildir güle güle kullanın

Display.template.php  DE BUL :

// Show information about the poster of this message.
 echo '
 <div class="poster">';

 // Are there any custom fields above the member name?
 if (!empty($message['custom_fields']['above_member']))
 {
 echo '
 <div class="custom_fields_above_member">
 <ul class="reset nolist">';

 foreach ($message['custom_fields']['above_member'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>';

 echo '
 </ul>
 </div>';
 }

 echo '
 <h4>';

 // Show online and offline buttons?
 if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
 echo '
 ', $context['can_send_pm'] ? '<a href="' . $message['member']['online']['href'] . '" title="' . $message['member']['online']['label'] . '">' : '', '<span class="' . ($message['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $message['member']['online']['text'] . '"></span>', $context['can_send_pm'] ? '</a>' : '';


 // Show a link to the member's profile.
 echo '
 ', $message['member']['link'], '
 </h4>';

 echo '
 <ul class="user_info">';


 // Show the user's avatar.
 if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
 echo '
 <li class="avatar">
 <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">', $message['member']['avatar']['image'], '</a>
 </li>';

 // Are there any custom fields below the avatar?
 if (!empty($message['custom_fields']['below_avatar']))
 foreach ($message['custom_fields']['below_avatar'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>';

 // Show the post group icons, but not for guests.
 if (!$message['member']['is_guest'])
 echo '
 <li class="icons">', $message['member']['group_icons'], '</li>';

 // Show the member's primary group (like 'Administrator') if they have one.
 if (!empty($message['member']['group']))
 echo '
 <li class="membergroup">', $message['member']['group'], '</li>';

 // Show the member's custom title, if they have one.
 if (!empty($message['member']['title']))
 echo '
 <li class="title">', $message['member']['title'], '</li>';

 // 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($modSettings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
 echo '
 <li class="postgroup">', $message['member']['post_group'], '</li>';

 // Show how many posts they have made.
 if (!isset($context['disabled_fields']['posts']))
 echo '
 <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';

 // Show their personal text?
 if (!empty($modSettings['show_blurb']) && $message['member']['blurb'] != '')
 echo '
 <li class="blurb">', $message['member']['blurb'], '</li>';

 // Any custom fields to show as icons?
 if (!empty($message['custom_fields']['icons']))
 {
 echo '
 <li class="im_icons">
 <ol>';

 foreach ($message['custom_fields']['icons'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>';

 echo '
 </ol>
 </li>';
 }

 // Show the website and email address buttons.
 if ($message['member']['show_profile_buttons'])
 {
 echo '
 <li class="profile">
 <ol class="profile_icons">';

 // Don't show an icon if they haven't specified a website.
 if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website']))
 echo '
 <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<span class="generic_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>';

 // Since we know this person isn't a guest, you *can* message them.
 if ($context['can_send_pm'])
 echo '
 <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<span class="generic_icons im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . ' centericon" title="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '"></span> ' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';

 // Show the email if necessary
 if (!empty($message['member']['email']) && $message['member']['show_email'])
 echo '
 <li class="email"><a href="mailto:' . $message['member']['email'] . '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="generic_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>';

 echo '
 </ol>
 </li>';
 }

 // Any custom fields for standard placement?
 if (!empty($message['custom_fields']['standard']))
 foreach ($message['custom_fields']['standard'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['title'], ': ', $custom['value'], '</li>';

 }
 // Otherwise, show the guest's email.
 elseif (!empty($message['member']['email']) && $message['member']['show_email'])
 echo '
 <li class="email"><a href="mailto:' . $message['member']['email'] . '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="generic_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>';

 // Show the IP to this user for this post - because you can moderate?
 if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
 echo '
 <li class="poster_ip"><a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a></li>';

 // Or, should we show it because this is you?
 elseif ($message['can_see_ip'])
 echo '
 <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a></li>';

 // Okay, are you at least logged in?  Then we can show something about why IPs are logged...
 elseif (!$context['user']['is_guest'])
 echo '
 <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a></li>';

 // Otherwise, you see NOTHING!
 else
 echo '
 <li class="poster_ip">', $txt['logged'], '</li>';

 // Are we showing the warning status?
 // Don't show these things for guests.
 if (!$message['member']['is_guest'] && $message['member']['can_see_warning'])
 echo '
 <li class="warning">', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<span class="generic_icons warning_', $message['member']['warning_status'], '"></span> ', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span></li>';

 // Are there any custom fields to show at the bottom of the poster info?
 if (!empty($message['custom_fields']['bottom_poster']))
 foreach ($message['custom_fields']['bottom_poster'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>';

 // Poster info ends.
 echo '
 </ul>';
 echo '
 </div>



DEGİŞTİR

// Show information about the poster of this message.
 echo '
 <div class="poster">';

 // Are there any custom fields above the member name?
 if (!empty($message['custom_fields']['above_member']))
 {
 echo '
 <div class="custom_fields_above_member">
 <ul class="reset nolist">';

 foreach ($message['custom_fields']['above_member'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>';

 echo '
 </ul>
 </div>';
 }
echo '
 <ul class="user_info">';


 // Show the user's avatar.
 if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
 echo '
 <li class="avatar">
 <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">', $message['member']['avatar']['image'], '</a>
 </li>';

 // Are there any custom fields below the avatar?
 if (!empty($message['custom_fields']['below_avatar']))
 foreach ($message['custom_fields']['below_avatar'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>';
// Show a link to the member's profile.
 echo '<h4>';
 if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
 echo '';


 
 echo '', $message['member']['link'], '</h4>';
 // Show the post group icons, but not for guests.
 if (!$message['member']['is_guest'])
 echo '
 <li class="icons">', $message['member']['group_icons'], '</li>';
 
 // Show the member's custom title, if they have one.
 if (!empty($message['member']['title']))
 echo '
 <li class="title">', $message['member']['title'], '</li>';
// Show the member's primary group (like 'Administrator') if they have one.
 if (!empty($message['member']['group']))
 echo '
 <li class="membergroup">', $message['member']['group'], '</li>';
 // Don't show these things for guests.
 if (!$message['member']['is_guest'])
 {

 // Show how many posts they have made.
 if (!isset($context['disabled_fields']['posts']))
 echo '<li>', $txt['member_postcount'], ':', $message['member']['posts'], '</li>';
 
 if (!empty($message['member']['birth_date']))
 {
    if ($message['member']['birth_date'] != '0000-00-00')
    {
       list ($birth_year, $birth_month, $birth_day) = sscanf($message['member']['birth_date'], '%d-%d-%d');
       $datearray = getdate(forum_time());
       $message['member'] += array(
          'age' => empty($birth_year) ? $txt[470] : $datearray['year'] - $birth_year - (($datearray['mon'] > $birth_month || ($datearray['mon'] == $birth_month && $datearray['mday'] >= $birth_day)) ? 0 : 1),
          'today_is_birthday' => $datearray['mon'] == $birth_month && $datearray['mday'] == $birth_day
       );
    }
 }
 loadLanguage('Profile');
 echo '<li>',$txt['members'],' No :', $message['member']['id'], '</li>';
echo '<li>Durumu:<a href="' . $message['member']['online']['href'] . '" title="' . $message['member']['online']['label'] . '">', $message['member']['online']['text'] , '</a></li>';
 // Any custom fields for standard placement?
 if (!empty($message['custom_fields']['standard']))
 foreach ($message['custom_fields']['standard'] as $custom)
 echo '
 <li custom ', $custom['col_name'] ,'">', $custom['title'], ':', $custom['value'], '</li>';

echo '<li class="kayit"><b>',$txt['date_registered'],' </b><br/><span style="font-size: 9px; font-family: Calibri;">',$message['member']['registered'],'</span></li>';
$post = $message['member']['posts'];
     if ($post > 0 && $post <= 10) { $postWidth = 3;}
     else if ($post > 10 && $post <= 50) { $postWidth = 10;}
     else if ($post > 50 && $post <= 100) { $postWidth = 20;}
     else if ($post > 100 && $post <= 150) { $postWidth = 30;}
     else if ($post > 150 && $post <= 200) { $postWidth = 40;}
     else if ($post > 200 && $post <= 250) { $postWidth = 50;}
     else if ($post > 250 && $post <= 350) { $postWidth = 60;}
     else if ($post > 350 && $post <= 400) { $postWidth = 65;}
     else if ($post > 400 && $post <= 425) { $postWidth = 70;}
     else if ($post > 425 && $post <= 500) { $postWidth = 75;}
     else if ($post > 500 && $post <= 600) { $postWidth = 80;}
     else if ($post > 600 && $post <= 800) { $postWidth = 88;}
     else if ($post > 800 && $post <= 1000) { $postWidth = 90;}
     else if ($post > 1000 && $post <= 1000000) { $postWidth = 95;}
     else { $postWidth = 0;}
   $deneyimi=($message['member']['posts'])/10;
    if ($deneyimi>100) {$deneyimi=99;}
    echo '
     <ul><li class="aktif" style="background: linear-gradient(orange, #fff,orange); width:',$postWidth,'px;"><p>Aktiflik</p></li>
     <li class="aktif"  style="background: linear-gradient(#557EA0, #fff,#557EA0); width:',$deneyimi,'px;"><p>Deneyim</p></li>
     <li class="aktif" style="background: linear-gradient(#54BC37, #fff,#54BC37); width:', $deneyimi, 'px;"><p>Seviye</p></li></ul>';
 
        // Show their personal text?
 if (!empty($modSettings['show_blurb']) && $message['member']['blurb'] != '')
 echo '
 <li class="blurb">', $message['member']['blurb'], '</li>';

 // Any custom fields to show as icons?
 if (!empty($message['custom_fields']['icons']))
 {
 echo '
 <li class="im_icons">
 <ol>';

 foreach ($message['custom_fields']['icons'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>';

 echo '
 </ol>
 </li>';
 }

 // Show the website and email address buttons.
 if ($message['member']['show_profile_buttons'])
 {
 echo '
 <li class="profile">
 <ol class="profile_icons">';

 // Don't show an icon if they haven't specified a website.
 if (!empty($message['member']['website']['url']) && !isset($context['disabled_fields']['website']))
 echo '
 <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<span class="generic_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>';

 // Since we know this person isn't a guest, you *can* message them.
 if ($context['can_send_pm'])
 echo '
 <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<span class="generic_icons im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . ' centericon" title="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '"></span> ' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';

 // Show the email if necessary
 if (!empty($message['member']['email']) && $message['member']['show_email'])
 echo '
 <li class="email"><a href="mailto:' . $message['member']['email'] . '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="generic_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>';

 echo '
 </ol>
 </li>';
 }

}
 // Otherwise, show the guest's email.
 elseif (!empty($message['member']['email']) && $message['member']['show_email'])
 echo '
 <li class="email"><a href="mailto:' . $message['member']['email'] . '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="generic_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>';
if (empty($message['member']['options']['teknoromi'])) {
                  $message['member']['options']['teknoromi']='Utangac';
              }
              echo '
                
  <b>Ruh Halim:</b>
  <img src="', $settings['default_images_url'], '/teknoromi/', $message['member']['options']['teknoromi'], '.gif" /> ';
 // Show the IP to this user for this post - because you can moderate?
 if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
 echo '
 <li class="poster_ip"><a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a></li>';

 // Or, should we show it because this is you?
 elseif ($message['can_see_ip'])
 echo '
 <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a></li>';

 // Okay, are you at least logged in?  Then we can show something about why IPs are logged...
 elseif (!$context['user']['is_guest'])
 echo '
 <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a></li>';

 // Otherwise, you see NOTHING!
 else
 echo '
 <li class="poster_ip">', $txt['logged'], '</li>';

 // Are we showing the warning status?
 // Don't show these things for guests.
 if (!$message['member']['is_guest'] && $message['member']['can_see_warning'])
 echo '
 <li class="warning">', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<span class="generic_icons warning_', $message['member']['warning_status'], '"></span> ', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span></li>';

 // Are there any custom fields to show at the bottom of the poster info?
 if (!empty($message['custom_fields']['bottom_poster']))
 foreach ($message['custom_fields']['bottom_poster'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>';

 // Poster info ends.
 echo '
 </ul>';
 echo '
 </div>



Profile.template.php bul




// Are there any custom profile fields - if so print them!

Degiştir

</dl><dl><b>Ruh Halim: </b>
                              <dd><select name="default_options[teknoromi]">                          
                              <option', @$context['member']['options']['teknoromi'] == 'Agresif' ? ' selected="selected"' : '', '>Agresif</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Asayis' ? ' selected="selected"' : '', '>Asayis</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Arsiz' ? ' selected="selected"' : '', '>Arsiz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Bezgin' ? ' selected="selected"' : '', '>Bezgin</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Cadaloz' ? ' selected="selected"' : '', '>Cadaloz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Caliskan' ? ' selected="selected"' : '', '>Caliskan</option>
  <option', @$context['member']['options']['teknoromi'] == 'Catlak' ? ' selected="selected"' : '', '>Catlak</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Coskulu' ? ' selected="selected"' : '', '>Coskulu</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Cilgin' ? ' selected="selected"' : '', '>Cilgin</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Dahi' ? ' selected="selected"' : '', '>Dahi</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Dalgin' ? ' selected="selected"' : '', '>Dalgin</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Dengeli' ? ' selected="selected"' : '', '>Dengeli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Dertli' ? ' selected="selected"' : '', '>Dertli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Evhamli' ? ' selected="selected"' : '', '>Evhamli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Geveze' ? ' selected="selected"' : '', '>Geveze</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Hasta' ? ' selected="selected"' : '', '>Hasta</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Havali' ? ' selected="selected"' : '', '>Havali</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Hevesli' ? ' selected="selected"' : '', '>Hevesli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Heyecanli' ? ' selected="selected"' : '', '>Heyecanli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Huysuz' ? ' selected="selected"' : '', '>Huysuz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Kacik' ? ' selected="selected"' : '', '>Kacik</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Kararsiz' ? ' selected="selected"' : '', '>Kararsiz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Keyifsiz' ? ' selected="selected"' : '', '>Keyifsiz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Kopmus' ? ' selected="selected"' : '', '>Kopmus</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Korsan' ? ' selected="selected"' : '', '>Korsan</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Masum' ? ' selected="selected"' : '', '>Masum</option>
  <option', @$context['member']['options']['teknoromi'] == 'Maymun' ? ' selected="selected"' : '', '>Maymun</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Melek' ? ' selected="selected"' : '', '>Melek</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Merakli' ? ' selected="selected"' : '', '>Merakli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Mesgul' ? ' selected="selected"' : '', '>Mesgul</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Mutlu' ? ' selected="selected"' : '', '>Mutlu</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Neseli' ? ' selected="selected"' : '', '>Neseli</option>
  <option', @$context['member']['options']['teknoromi'] == 'Olgun' ? ' selected="selected"' : '', '>Olgun</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Rahat' ? ' selected="selected"' : '', '>Rahat</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Rahmetli' ? ' selected="selected"' : '', '>Rahmetli</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Sakaci' ? ' selected="selected"' : '', '>Sakaci</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Sanatci' ? ' selected="selected"' : '', '>Sanatci</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Sancili' ? ' selected="selected"' : '', '>Sancili</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Saskin' ? ' selected="selected"' : '', '>Saskin</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Seytani' ? ' selected="selected"' : '', '>Seytani</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Simarik' ? ' selected="selected"' : '', '>Simarik</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Soguk' ? ' selected="selected"' : '', '>Soguk</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Soytari' ? ' selected="selected"' : '', '>Soytari</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Sporcu' ? ' selected="selected"' : '', '>Sporcu</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Supheci' ? ' selected="selected"' : '', '>Supheci</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Tuhaf' ? ' selected="selected"' : '', '>Tuhaf</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Ucube' ? ' selected="selected"' : '', '>Ucube</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Utangac' ? ' selected="selected"' : '', '>Utangac</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Uykulu' ? ' selected="selected"' : '', '>Uykulu</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Uykusuz' ? ' selected="selected"' : '', '>Uykusuz</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Uyuz' ? ' selected="selected"' : '', '>Uyuz</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Yalniz' ? ' selected="selected"' : '', '>Yalniz</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Yasakli' ? ' selected="selected"' : '', '>Yasakli</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Yorgun' ? ' selected="selected"' : '', '>Yorgun</option>  
                              </select></dd>
  ', !empty($context['member']['options']['teknoromi']) ? '' . $context['member']['options']['teknoromi'] . '' : '', '</dl>';
// Are there any custom profile fields - if so print them!



Kullandıgın temanın index.css de bul :

#userstatus .smalltext, .pm_icon {
 margin: 0 0 0 20px !important;
}

degiştir

#userstatus .smalltext, .pm_icon {
 margin: 0 0 0 2px !important;
}

index.css de en alta EKLE

/* profil alanı  tekyürek*/
.poster {
    border-style: solid;
    border-color: #2196F3 #2196F3 #2573B1;
    background: linear-gradient(to top, #E2E9F3 1%, #FFF 70%) repeat scroll 0% 0% transparent;
    border-width: 2px 1px 3px;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    color: black;
    box-shadow: 1px 1px 5px 1px #000;
    text-shadow: 1px 0px #BF6900;
}
.poster ul li {
border-bottom: 1px solid #ccc;
font-weight: bold;
}
.aktif{height:18px;}
.aktif p{font-size:12px;line-height:16px;text-align:center;width:155px;border:1px solid #ccc;border-radius:0px 10px 10px 0px;}
.board_children{border:1px solid rgb(204, 204, 204);overflow:auto;border-radius:3px;}


ekteki teknoromi klasörünü default temanızın images klasörüne atın

SercaN

Aktiflik Deneyim Seviyede oluyor mu bunları yapınca
Hayata gülerek imzanızı bırakın.


tekyürek

Mobilde  düzgün durmasını istiyorsanız   aşadaki işlemi uygulayın

responsive.css

(bul):@media (max-width: 480px) {
degiştir : @media (max-width: 480px) {

#forumposts div.poster {width: auto;}
    .poster ul li{display:none;}


bul : @media (min-width: 481px) and (max-width: 720px) {

 degiştir : @media (min-width: 481px) and (max-width: 720px) {
#forumposts div.poster { width: 80%;  margin-left: auto;margin-right: auto;}
.cont_colum_post {width: 100%;overflow:hidden;padding:0px; }
.poster ul li{display:none;}


qwqw

Aktiflik

Deneyim

Seviye

kısmı alt alta kelime halinde çıkıyor renkli şekilde

a
k
t
i
f
l
i
k

gibi bunu nasıl duzeltirim

qwqw

Bu konu hakkında yardımcı olacak varmıdır

tarantula901

Sitenizde işlem yapmadan önce mutlaka yedek alın, yedek alın yedek almayı unutmayın her şeyden önce bu önemli

Pm'den ve Skype'den istenilen destekler ücretlidir. Ücret ödememek için lütfen sitede sorunuzu konu açarak sorabilirsiniz.

Ücretli Smf Destek İçin

tekyürek

#7
SMF RC 1 İÇİN GÜNCELLENDİ  RC 1 İÇİN BUNU KULLANIN

RC 1 DE : Çok degişiklik  oldugu için   degişiklikleri uygulamak zorunda kaldım   profil alanı  githupdaki rc 1  e göre düzenlendi




yepyeni bir profil alanı   ruh halim moduda profil alanının  içinde dahildir güle güle kullanın

Display.template.php  DE BUL :

// Show information about the poster of this message.
 echo '
 <div class="poster">';

 // Are there any custom fields above the member name?
 if (!empty($message['custom_fields']['above_member']))
 {
 echo '
 <div class="custom_fields_above_member">
 <ul class="nolist">';

 foreach ($message['custom_fields']['above_member'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>';

 echo '
 </ul>
 </div>';
 }

 echo '
 <h4>';

 // Show online and offline buttons?
 if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
 echo '
 ', $context['can_send_pm'] ? '<a href="' . $message['member']['online']['href'] . '" title="' . $message['member']['online']['label'] . '">' : '', '<span class="' . ($message['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $message['member']['online']['text'] . '"></span>', $context['can_send_pm'] ? '</a>' : '';

 // Custom fields BEFORE the username?
 if (!empty($message['custom_fields']['before_member']))
 foreach ($message['custom_fields']['before_member'] as $custom)
 echo '
 <span class="custom ', $custom['col_name'], '">', $custom['value'], '</span>';

 // Show a link to the member's profile.
 echo '
 ', $message['member']['link'];

 // Custom fields AFTER the username?
 if (!empty($message['custom_fields']['after_member']))
 foreach ($message['custom_fields']['after_member'] as $custom)
 echo '
 <span class="custom ', $custom['col_name'], '">', $custom['value'], '</span>';

 // Begin display of user info
 echo '
 </h4>
 <ul class="user_info">';

 // Show the user's avatar.
 if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
 echo '
 <li class="avatar">
 <a href="', $message['member']['href'], '">', $message['member']['avatar']['image'], '</a>
 </li>';

 // Are there any custom fields below the avatar?
 if (!empty($message['custom_fields']['below_avatar']))
 foreach ($message['custom_fields']['below_avatar'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>';

 // Show the post group icons, but not for guests.
 if (!$message['member']['is_guest'])
 echo '
 <li class="icons">', $message['member']['group_icons'], '</li>';

 // Show the member's primary group (like 'Administrator') if they have one.
 if (!empty($message['member']['group']))
 echo '
 <li class="membergroup">', $message['member']['group'], '</li>';

 // Show the member's custom title, if they have one.
 if (!empty($message['member']['title']))
 echo '
 <li class="title">', $message['member']['title'], '</li>';

 // 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($modSettings['hide_post_group']) || empty($message['member']['group'])) && !empty($message['member']['post_group']))
 echo '
 <li class="postgroup">', $message['member']['post_group'], '</li>';

 // Show how many posts they have made.
 if (!isset($context['disabled_fields']['posts']))
 echo '
 <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';

 // Show their personal text?
 if (!empty($modSettings['show_blurb']) && !empty($message['member']['blurb']))
 echo '
 <li class="blurb">', $message['member']['blurb'], '</li>';

 // Any custom fields to show as icons?
 if (!empty($message['custom_fields']['icons']))
 {
 echo '
 <li class="im_icons">
 <ol>';

 foreach ($message['custom_fields']['icons'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>';

 echo '
 </ol>
 </li>';
 }

 // Show the website and email address buttons.
 if ($message['member']['show_profile_buttons'])
 {
 echo '
 <li class="profile">
 <ol class="profile_icons">';

 // Don't show an icon if they haven't specified a website.
 if (!empty($message['member']['website']['url']) && !isset($context['disabled_fields']['website']))
 echo '
 <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="main_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>';

 // Since we know this person isn't a guest, you *can* message them.
 if ($context['can_send_pm'])
 echo '
 <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<span class="main_icons im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . ' centericon" title="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '"></span> ' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';

 // Show the email if necessary
 if (!empty($message['member']['email']) && $message['member']['show_email'])
 echo '
 <li class="email"><a href="mailto:' . $message['member']['email'] . '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="main_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>';

 echo '
 </ol>
 </li><!-- .profile -->';
 }

 // Any custom fields for standard placement?
 if (!empty($message['custom_fields']['standard']))
 foreach ($message['custom_fields']['standard'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['title'], ': ', $custom['value'], '</li>';
 }
 // Otherwise, show the guest's email.
 elseif (!empty($message['member']['email']) && $message['member']['show_email'])
 echo '
 <li class="email">
 <a href="mailto:' . $message['member']['email'] . '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="main_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a>
 </li>';

 // Show the IP to this user for this post - because you can moderate?
 if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
 echo '
 <li class="poster_ip">
 <a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a>
 </li>';

 // Or, should we show it because this is you?
 elseif ($message['can_see_ip'])
 echo '
 <li class="poster_ip">
 <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a>
 </li>';

 // Okay, are you at least logged in? Then we can show something about why IPs are logged...
 elseif (!$context['user']['is_guest'])
 echo '
 <li class="poster_ip">
 <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a>
 </li>';

 // Otherwise, you see NOTHING!
 else
 echo '
 <li class="poster_ip">', $txt['logged'], '</li>';

 // Are we showing the warning status?
 // Don't show these things for guests.
 if (!$message['member']['is_guest'] && $message['member']['can_see_warning'])
 echo '
 <li class="warning">
 ', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<span class="main_icons warning_', $message['member']['warning_status'], '"></span> ', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span>
 </li>';

 // Are there any custom fields to show at the bottom of the poster info?
 if (!empty($message['custom_fields']['bottom_poster']))
 foreach ($message['custom_fields']['bottom_poster'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>';

 // Poster info ends.
 echo '
 </ul>
 </div><!-- .poster -->
 <div class="postarea">
 <div class="keyinfo">';



DEGİŞTİR

// Show information about the poster of this message.
 echo '
 <div class="poster">';

 // Are there any custom fields above the member name?
 if (!empty($message['custom_fields']['above_member']))
 {
 echo '
 <div class="custom_fields_above_member">
 <ul class="nolist">';

 foreach ($message['custom_fields']['above_member'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>';

 echo '
 </ul>
 </div>';
 }
echo '
 <ul class="user_info">';
 
 // Custom fields BEFORE the username?
 if (!empty($message['custom_fields']['before_member']))
 foreach ($message['custom_fields']['before_member'] as $custom)
 echo '
 <span class="custom ', $custom['col_name'], '">', $custom['value'], '</span>';

 // Begin display of user info
 echo '
 </h4>
 <ul class="user_info">';
 // Show the user's avatar.
 if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
 echo '
 <li class="avatar">
 <a href="', $message['member']['href'], '">', $message['member']['avatar']['image'], '</a>
 </li>';

 // Are there any custom fields below the avatar?
 if (!empty($message['custom_fields']['below_avatar']))
 foreach ($message['custom_fields']['below_avatar'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>';

// Show a link to the member's profile.
 echo '<h4>';
 if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
 echo '', $message['member']['link'], '</h4>';
 // Show the post group icons, but not for guests.
 if (!$message['member']['is_guest'])
 echo '
 <li class="icons">', $message['member']['group_icons'], '</li>';

 // Show the member's custom title, if they have one.
 if (!empty($message['member']['title']))
 echo '
 <li class="title">', $message['member']['title'], '</li>';
 // Show the member's primary group (like 'Administrator') if they have one.
 if (!empty($message['member']['group']))
 echo '
 <li class="membergroup">', $message['member']['group'], '</li>';

 // 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($modSettings['hide_post_group']) || empty($message['member']['group'])) && !empty($message['member']['post_group']))
 echo '
 <li class="postgroup">', $message['member']['post_group'], '</li>';

 // Show how many posts they have made.
 if (!isset($context['disabled_fields']['posts']))
 echo '
 <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';

 if (!empty($message['member']['birth_date']))
 {
    if ($message['member']['birth_date'] != '0000-00-00')
    {
       list ($birth_year, $birth_month, $birth_day) = sscanf($message['member']['birth_date'], '%d-%d-%d');
       $datearray = getdate(forum_time());
       $message['member'] += array(
          'age' => empty($birth_year) ? $txt[470] : $datearray['year'] - $birth_year - (($datearray['mon'] > $birth_month || ($datearray['mon'] == $birth_month && $datearray['mday'] >= $birth_day)) ? 0 : 1),
          'today_is_birthday' => $datearray['mon'] == $birth_month && $datearray['mday'] == $birth_day
       );
    }
 }
 // Show online and offline buttons?
 loadLanguage('Profile');
 echo '<li>',$txt['members'],' No :', $message['member']['id'], '</li>';
echo '<li>Durumu:<a href="' . $message['member']['online']['href'] . '" title="' . $message['member']['online']['label'] . '">', $message['member']['online']['text'] , '</a>';
echo '
 ', $context['can_send_pm'] ? '<a href="' . $message['member']['online']['href'] . '" title="' . $message['member']['online']['label'] . '">' : '', '<span class="' . ($message['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $message['member']['online']['text'] . '"></span>', $context['can_send_pm'] ? '</a></li>' : '';

 // Any custom fields for standard placement?
 if (!empty($message['custom_fields']['standard']))
 foreach ($message['custom_fields']['standard'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['title'], ': ', $custom['value'], '</li>';

echo '<li class="kayit"><b>',$txt['date_registered'],' </b><br/><span style="font-size: 9px; font-family: Calibri;">',$message['member']['registered'],'</span></li>';
$post = $message['member']['posts'];
     if ($post > 0 && $post <= 10) { $postWidth = 3;}
     else if ($post > 5 && $post <= 20) { $postWidth = 53;}
     else if ($post > 10 && $post <= 50) { $postWidth = 55;}
     else if ($post > 100 && $post <= 150) { $postWidth = 60;}
     else if ($post > 150 && $post <= 200) { $postWidth = 70;}
     else if ($post > 200 && $post <= 250) { $postWidth = 75;}
     else if ($post > 250 && $post <= 350) { $postWidth = 80;}
     else if ($post > 350 && $post <= 400) { $postWidth = 85;}
     else if ($post > 400 && $post <= 425) { $postWidth = 90;}
     else if ($post > 425 && $post <= 500) { $postWidth = 95;}
     else if ($post > 500 && $post <= 600) { $postWidth = 96;}
     else if ($post > 600 && $post <= 800) { $postWidth = 97;}
     else if ($post > 800 && $post <= 1000) { $postWidth = 98;}
     else if ($post > 1000 && $post <= 1000000) { $postWidth = 99;}
     else { $postWidth = 0;}
   $deneyimi=($message['member']['posts'])/1;
    if ($deneyimi>90) {$deneyimi=90;}
 if ($context['user']['is_logged'])
    echo '
     <ul><li class="aktif" style="background: linear-gradient(orange, #fff,orange); width:',$postWidth,'px;"><p>Aktiflik</p></li>
     <li class="aktif"  style="background: linear-gradient(#557EA0, #fff,#557EA0); width:',$deneyimi,'px;"><p>Deneyim</p></li></ul>';
 
 // Show their personal text?
 if (!empty($modSettings['show_blurb']) && !empty($message['member']['blurb']))
 echo '
 <li class="blurb">', $message['member']['blurb'], '</li>';

 // Any custom fields to show as icons?
 if (!empty($message['custom_fields']['icons']))
 {
 echo '
 <li class="im_icons">
 <ol>';

 foreach ($message['custom_fields']['icons'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>';

 echo '
 </ol>
 </li>';
 }

 // Show the website and email address buttons.
 if ($message['member']['show_profile_buttons'])
 {
 echo '
 <li class="profile">
 <ol class="profile_icons">';

 // Don't show an icon if they haven't specified a website.
 if (!empty($message['member']['website']['url']) && !isset($context['disabled_fields']['website']))
 echo '
 <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="main_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>';

 // Since we know this person isn't a guest, you *can* message them.
 if ($context['can_send_pm'])
 echo '
 <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<span class="main_icons im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . ' centericon" title="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '"></span> ' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';

 // Show the email if necessary
 if (!empty($message['member']['email']) && $message['member']['show_email'])
 echo '
 <li class="email"><a href="mailto:' . $message['member']['email'] . '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="main_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>';

 echo '
 </ol>
 </li><!-- .profile -->';
 }

 }
 // Otherwise, show the guest's email.
 elseif (!empty($message['member']['email']) && $message['member']['show_email'])
 echo '
 <li class="email">
 <a href="mailto:' . $message['member']['email'] . '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="main_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a>
 </li>';
if (empty($message['member']['options']['teknoromi'])) {
                  $message['member']['options']['teknoromi']='Utangac';
              }
              echo '
                
  <b>Ruh Halim:</b>
  <img src="', $settings['default_images_url'], '/teknoromi/', $message['member']['options']['teknoromi'], '.gif" /> ';
 // Show the IP to this user for this post - because you can moderate?
 if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip']))
 echo '
 <li class="poster_ip">
 <a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a>
 </li>';
 
 // Or, should we show it because this is you?
 elseif ($message['can_see_ip'])
 echo '
 <li class="poster_ip">
 <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a>
 </li>';
 
 // Okay, are you at least logged in? Then we can show something about why IPs are logged...
 elseif (!$context['user']['is_guest'])
 echo '
 <li class="poster_ip">
 <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a>
 </li>';
 
 // Otherwise, you see NOTHING!
 else
 echo '
 <li class="poster_ip">', $txt['logged'], '</li>';

 // Are we showing the warning status?
 // Don't show these things for guests.
 if (!$message['member']['is_guest'] && $message['member']['can_see_warning'])
 echo '
 <li class="warning">
 ', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<span class="main_icons warning_', $message['member']['warning_status'], '"></span> ', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span>
 </li>';
 // Are there any custom fields to show at the bottom of the poster info?
 if (!empty($message['custom_fields']['bottom_poster']))
 foreach ($message['custom_fields']['bottom_poster'] as $custom)
 echo '
 <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>';

 // Poster info ends.
 echo '
 </ul>
 </div><!-- .poster -->
 <div class="postarea">
 <div class="keyinfo">';



Profile.template.php bul




// Are there any custom profile fields - if so print them!

Degiştir

</dl><dl><b>Ruh Halim: </b>
                              <dd><select name="default_options[teknoromi]">                          
                              <option', @$context['member']['options']['teknoromi'] == 'Agresif' ? ' selected="selected"' : '', '>Agresif</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Asayis' ? ' selected="selected"' : '', '>Asayis</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Arsiz' ? ' selected="selected"' : '', '>Arsiz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Bezgin' ? ' selected="selected"' : '', '>Bezgin</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Cadaloz' ? ' selected="selected"' : '', '>Cadaloz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Caliskan' ? ' selected="selected"' : '', '>Caliskan</option>
  <option', @$context['member']['options']['teknoromi'] == 'Catlak' ? ' selected="selected"' : '', '>Catlak</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Coskulu' ? ' selected="selected"' : '', '>Coskulu</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Cilgin' ? ' selected="selected"' : '', '>Cilgin</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Dahi' ? ' selected="selected"' : '', '>Dahi</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Dalgin' ? ' selected="selected"' : '', '>Dalgin</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Dengeli' ? ' selected="selected"' : '', '>Dengeli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Dertli' ? ' selected="selected"' : '', '>Dertli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Evhamli' ? ' selected="selected"' : '', '>Evhamli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Geveze' ? ' selected="selected"' : '', '>Geveze</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Hasta' ? ' selected="selected"' : '', '>Hasta</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Havali' ? ' selected="selected"' : '', '>Havali</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Hevesli' ? ' selected="selected"' : '', '>Hevesli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Heyecanli' ? ' selected="selected"' : '', '>Heyecanli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Huysuz' ? ' selected="selected"' : '', '>Huysuz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Kacik' ? ' selected="selected"' : '', '>Kacik</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Kararsiz' ? ' selected="selected"' : '', '>Kararsiz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Keyifsiz' ? ' selected="selected"' : '', '>Keyifsiz</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Kopmus' ? ' selected="selected"' : '', '>Kopmus</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Korsan' ? ' selected="selected"' : '', '>Korsan</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Masum' ? ' selected="selected"' : '', '>Masum</option>
  <option', @$context['member']['options']['teknoromi'] == 'Maymun' ? ' selected="selected"' : '', '>Maymun</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Melek' ? ' selected="selected"' : '', '>Melek</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Merakli' ? ' selected="selected"' : '', '>Merakli</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Mesgul' ? ' selected="selected"' : '', '>Mesgul</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Mutlu' ? ' selected="selected"' : '', '>Mutlu</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Neseli' ? ' selected="selected"' : '', '>Neseli</option>
  <option', @$context['member']['options']['teknoromi'] == 'Olgun' ? ' selected="selected"' : '', '>Olgun</option>
                              <option', @$context['member']['options']['teknoromi'] == 'Rahat' ? ' selected="selected"' : '', '>Rahat</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Rahmetli' ? ' selected="selected"' : '', '>Rahmetli</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Sakaci' ? ' selected="selected"' : '', '>Sakaci</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Sanatci' ? ' selected="selected"' : '', '>Sanatci</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Sancili' ? ' selected="selected"' : '', '>Sancili</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Saskin' ? ' selected="selected"' : '', '>Saskin</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Seytani' ? ' selected="selected"' : '', '>Seytani</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Simarik' ? ' selected="selected"' : '', '>Simarik</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Soguk' ? ' selected="selected"' : '', '>Soguk</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Soytari' ? ' selected="selected"' : '', '>Soytari</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Sporcu' ? ' selected="selected"' : '', '>Sporcu</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Supheci' ? ' selected="selected"' : '', '>Supheci</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Tuhaf' ? ' selected="selected"' : '', '>Tuhaf</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Ucube' ? ' selected="selected"' : '', '>Ucube</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Utangac' ? ' selected="selected"' : '', '>Utangac</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Uykulu' ? ' selected="selected"' : '', '>Uykulu</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Uykusuz' ? ' selected="selected"' : '', '>Uykusuz</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Uyuz' ? ' selected="selected"' : '', '>Uyuz</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Yalniz' ? ' selected="selected"' : '', '>Yalniz</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Yasakli' ? ' selected="selected"' : '', '>Yasakli</option>  
                              <option', @$context['member']['options']['teknoromi'] == 'Yorgun' ? ' selected="selected"' : '', '>Yorgun</option>  
                              </select></dd>
  ', !empty($context['member']['options']['teknoromi']) ? '' . $context['member']['options']['teknoromi'] . '' : '', '</dl>';
// Are there any custom profile fields - if so print them!



Kullandıgın temanın index.css de bul :

#userstatus .smalltext, .pm_icon {
 margin: 0 0 0 20px !important;
}

degiştir

#userstatus .smalltext, .pm_icon {
 margin: 0 0 0 2px !important;
}

index.css de en alta EKLE

/* profil alanı  tekyürek*/
.poster {
    border-style: solid;
    border-color: #2196F3 #2196F3 #2573B1;
    background: linear-gradient(to top, #E2E9F3 1%, #FFF 70%) repeat scroll 0% 0% transparent;
    border-width: 2px 1px 3px;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    color: black;
    box-shadow: 1px 1px 5px 1px #000;
    text-shadow: 1px 0px #BF6900;
}
.poster ul li {
border-bottom: 1px solid #ccc;
font-weight: bold;
}
.aktif{height:18px;}
.aktif p{font-size:12px;line-height:16px;text-align:center;width:155px;border:1px solid #ccc;border-radius:0px 10px 10px 0px;}
.board_children{border:1px solid rgb(204, 204, 204);overflow:auto;border-radius:3px;}


ekteki teknoromi klasörünü default temanızın images klasörüne atın

[/quote]

ramooo19