News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Mootools Menu (Hareketli Forum Menusu)

Started by Hoochie Coochie Man, September 05, 2008, 09:39:04 AM

Previous topic - Next topic

Hakanchess

bunun 1.1.7 için olanı var mı bi de sinanın yaptığı portalla uyumlu olanı...

Yağız...


Hakanchess

sinanın yaptığı portalla uyumlu olanı...

F1TeamTurkey

Quote from: Hoochie Coochie Man on September 05, 2008, 09:39:04 AM


Demo

Anlatım Default 1.1.5 içindir..

index.template.php
Bul:
// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context, $settings, $options, $scripturl, $txt;

// Work out where we currently are.
$current_action = 'home';
if (in_array($context['current_action'], array('admin', 'ban', 'boardrecount', 'cleanperms', 'detailedversion', 'dumpdb', 'featuresettings', 'featuresettings2', 'findmember', 'maintain', 'manageattachments', 'manageboards', 'managecalendar', 'managesearch', 'membergroups', 'modlog', 'news', 'optimizetables', 'packageget', 'packages', 'permissions', 'pgdownload', 'postsettings', 'regcenter', 'repairboards', 'reports', 'serversettings', 'serversettings2', 'smileys', 'viewErrorLog', 'viewmembers')))
$current_action = 'admin';
if (in_array($context['current_action'], array('search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm')))
$current_action = $context['current_action'];
if ($context['current_action'] == 'search2')
$current_action = 'search';
if ($context['current_action'] == 'theme')
$current_action = isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'pick' ? 'profile' : 'admin';

// Are we using right-to-left orientation?
if ($context['right_to_left'])
{
$first = 'last';
$last = 'first';
}
else
{
$first = 'first';
$last = 'last';
}

// Show the start of the tab section.
echo '
<table cellpadding="0" cellspacing="0" border="0" style="margin-left: 10px;">
<tr>
<td class="maintab_' , $first , '">&nbsp;</td>';

// Show the [home] button.
echo ($current_action=='home' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'home' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '">' , $txt[103] , '</a>
</td>' , $current_action == 'home' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// Show the [help] button.
echo ($current_action == 'help' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'help' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=help">' , $txt[119] , '</a>
</td>' , $current_action == 'help' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// How about the [search] button?
if ($context['allow_search'])
echo ($current_action == 'search' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'search' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=search">' , $txt[182] , '</a>
</td>' , $current_action == 'search' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// Is the user allowed to administrate at all? ([admin])
if ($context['allow_admin'])
echo ($current_action == 'admin' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'admin' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=admin">' , $txt[2] , '</a>
</td>' , $current_action == 'admin' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// Edit Profile... [profile]
if ($context['allow_edit_profile'])
echo ($current_action == 'profile' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'profile' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=profile">' , $txt[79] , '</a>
</td>' , $current_action == 'profile' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// Go to PM center... [pm]
if ($context['user']['is_logged'] && $context['allow_pm'])
echo ($current_action == 'pm' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'pm' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=pm">' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</a>
</td>' , $current_action == 'pm' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// The [calendar]!
if ($context['allow_calendar'])
echo ($current_action == 'calendar' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'calendar' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=calendar">' , $txt['calendar24'] , '</a>
</td>' , $current_action == 'calendar' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// the [member] list button
if ($context['allow_memberlist'])
echo ($current_action == 'mlist' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'mlist' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=mlist">' , $txt[331] , '</a>
</td>' , $current_action == 'mlist' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


// If the user is a guest, show [login] button.
if ($context['user']['is_guest'])
echo ($current_action == 'login' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'login' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=login">' , $txt[34] , '</a>
</td>' , $current_action == 'login' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


// If the user is a guest, also show [register] button.
if ($context['user']['is_guest'])
echo ($current_action == 'register' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'register' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=register">' , $txt[97] , '</a>
</td>' , $current_action == 'register' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


// Otherwise, they might want to [logout]...
if ($context['user']['is_logged'])
echo ($current_action == 'logout' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'logout' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '">' , $txt[108] , '</a>
</td>' , $current_action == 'logout' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';

// The end of tab section.
echo '
<td class="maintab_' , $last , '">&nbsp;</td>
</tr>
</table>';

}


Değiştir:
// Show the menu up top.  Something like [home] [help] [pm] [logout] [login] ...
function template_menu()
{
  global $context, $settings, $options, $scripturl, $txt;


echo '
<div id="kwick">
<ul class="kwicks">';

  // Show the [home] button.
  echo '<li><a href="', $scripturl, '" class="kwick opt1">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/home.gif" alt="' . $txt[103] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[103]), '</span></a></li>';

  // Show the [help] button.
  echo '<li><a href="', $scripturl, '?action=help" class="kwick opt2" >', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/help.gif" alt="' . $txt[119] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[119]), '</span></a></li>';

  // How about the [search] button?
  if ($context['allow_search'])
echo '<li><a href="', $scripturl, '?action=search" class="kwick opt3">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/search.gif" alt="' . $txt[182] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[182]), '</span></a></li>';

  // Is the user allowed to administrate at all? ([admin])
  if ($context['allow_admin']){
echo '<li><a href="', $scripturl, '?action=admin" class="kwick opt4">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/admin.gif" alt="' . $txt[2] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[2]), '</span></a></li>';
}
  // Edit Profile [profile] :x
  if ($context['allow_edit_profile'])
echo '<li><a href="', $scripturl, '?action=profile" class="kwick opt5">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/profile.gif" alt="' . $txt[79] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[467]), '</span></a></li>';

  // The Private Message [PM]!
  if ($context['allow_pm'])
echo '<li><a href="', $scripturl, '?action=pm" class="kwick opt6">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/pm.gif" alt="' . $txt[144] . '" style="margin: 0px 0;" border="0" /><span>' : $txt['smf199']), '</span></a></li>';

  // The [calendar]!
  if ($context['allow_calendar'])
echo '<li><a href="', $scripturl, '?action=calendar" class="kwick opt7">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/calendar.gif" alt="' . $txt['calendar24'] . '" style="margin: 0px 0;" border="0" /><span>' : $txt['calendar24']), '</span></a></li>';
 
  // The [member] list button :)
  if ($context['allow_memberlist'])
echo '<li><a href="', $scripturl, '?action=mlist" class="kwick opt8">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/memberlist.gif" alt="' . $txt[331] .'" style="margin: 0px 0;" border="0" /><span>' : $txt[331]), '</span></a></li>';
 
  // If the user is a guest, show [login] button.
  if ($context['user']['is_guest'])  
echo '<li><a href="', $scripturl, '?action=login" class="kwick opt9">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/login.gif" alt="' . $txt[34] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[34]), '</span></a></li>';

  // If the user is a guest, show [register] button.
  if ($context['user']['is_guest'])
echo '<li><a href="', $scripturl, '?action=register" class="kwick opt10">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/register.gif" alt="' . $txt[97] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[97]), '</span></a></li>';
 
  // Otherwise, they might want to [logout]...
  if ($context['user']['is_logged'])
  echo '<li><a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '" class="kwick opt11">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/logout.gif" alt="' . $txt[108] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[108]), '</span></a></li>';


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


}


Bul:
</head>

Öncesine ekle:
<script language="JavaScript" type="text/javascript" src="', $settings['theme_url'], '/mootools.js"></script>
<script language="JavaScript" type="text/javascript" src="', $settings['theme_url'], '/imageMenu.js"></script>
<script language="JavaScript" type="text/javascript" src="', $settings['theme_url'], '/kwick.js"></script>


Style.css
En sona ekle:
/*MooTools Menu */

#kwick {
    width: 100%;
}

#kwick .kwicks {
background-color:transparent;
    display: block;
    height: 80px;
    margin: 0px;
    margin-top: 8px;
    padding: 0
   
}

#kwick li {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

#kwick .kwick {
    display: block;
    cursor: pointer;
    overflow: hidden;
    height: 80px;
    width: 102px;
    background: #fff;
}

#kwick .kwick span {
    display: none;
}

#kwick .opt1 {
background-color:transparent;
    outline: none
}

#kwick .opt2 {
background-color:transparent;
    outline: none
}

#kwick .opt3 {
background-color:transparent;
    outline: none
}

#kwick .opt4 {
background-color:transparent;
    outline: none
}

#kwick .opt5 {
background-color:transparent;
    outline: none
}

#kwick .opt6 {
background-color:transparent;
    outline: none;
}

#kwick .opt7 {
background-color:transparent;
    outline: none
}

#kwick .opt8 {
background-color:transparent;
    outline: none
}

#kwick .opt9 {
background-color:transparent;
    outline: none
}

#kwick .opt10 {
background-color:transparent;
    outline: none
}

#kwick .opt11 {
background-color:transparent;
    outline: none
    border-right: 0px none;
}


Son olarak ekteki turkish klasörünü, temanızın images klasörüne atın.
Ekteki diğer dosyaları da tema kalsörünüze atın.

Şu Kodlar Bende Yok Var Ama Çok Kısa Sonu Yok Ayışıgı Temasına Yapacak Varmı?index.temp.aşagıda....
http://rapidshare.com/files/181788795/index.template.rar.html


uykudelisi_61




Arkadaşlar resimdede anlattığım gibi mootools menüyü nasıl ortalayabilirim <center>menü kodları</center> şekdinde denedim ama başaramadım kod bilgim fazla yok sanırım benden kaynaklanan bir nedenden dolayı yapamadım ikinci olarakta o aradaki boşluğu nasıl kapatabilirim menü üste yapışsın istiyorum şimdiden teşekkürler

1.1.8 ve Default Tema Kullanıyorum .Yüklü Hiç Bir Modifikasyon Yok Sadece Menü ve Forum Çerçevesi var.

Pяηѕѕ LF

Merhaba,

benimde ufak bir sorum olucak.



ekte verilen resim boyutlari 215 x 80. Yapmak istedigim menü farkli kullanmak için küçültmek istedim ve resimleri 140 x 52 yaptim.

style.css deki rakamlardan oynadim, diger dosyalara göz attim ama birtürlü normal sekile getiremedim.

nasil ve hangi dosyalarda tam olarak degisiklikler yapmam gerekiyor ?

Yardimci olabilirmisiniz ?



default 1.1.8
1.1.21 Default

Yağız...

Quote from: uykudelisi_61 on February 19, 2009, 08:49:42 PM



Arkadaşlar resimdede anlattığım gibi mootools menüyü nasıl ortalayabilirim <center>menü kodları</center> şekdinde denedim ama başaramadım kod bilgim fazla yok sanırım benden kaynaklanan bir nedenden dolayı yapamadım ikinci olarakta o aradaki boşluğu nasıl kapatabilirim menü üste yapışsın istiyorum şimdiden teşekkürler

1.1.8 ve Default Tema Kullanıyorum .Yüklü Hiç Bir Modifikasyon Yok Sadece Menü ve Forum Çerçevesi var.

Temanızın catbg dosyası büyük olduğundan öyle gözüküyor sanırım. index.template.php dosyanızı alabilir miyim?

Quote from: Pяєηѕєѕ 丂√丂 on February 20, 2009, 10:05:04 AM
Merhaba,

benimde ufak bir sorum olucak.



ekte verilen resim boyutlari 215 x 80. Yapmak istedigim menü farkli kullanmak için küçültmek istedim ve resimleri 140 x 52 yaptim.

style.css deki rakamlardan oynadim, diger dosyalara göz attim ama birtürlü normal sekile getiremedim.

nasil ve hangi dosyalarda tam olarak degisiklikler yapmam gerekiyor ?

Yardimci olabilirmisiniz ?



default 1.1.8
kwick.js dosyasında 215 yazan yeri 140 yap.

Pяηѕѕ LF

#48
Yağız degisen birsey olmadi ben orayi kendimde degistirmistim yine denedim ama ayni resimdeki gibi duruyor.  :-\




Yağız width height oynaya oynaya istelinen hale getirdim :)

Tesekkür ederim kolay gelsin.
1.1.21 Default

Yağız...

#kwick .kwick {
    display: block;
    cursor: pointer;
    overflow: hidden;
    height: 80px;
    width: 102px;
    background: #fff;
}
style.css dosyasinda burada bulunan 102px yazan yeri küçültmeye çalış.

uykudelisi_61

http://rapidshare.com/files/200781710/index.template.php.html İndex.template.php dosyam eklenti olarak ekleme seçeneği aktif değildi rapide upload ettim.

Yağız...


uykudelisi_61

Quote from: Yağız... on February 21, 2009, 09:42:24 AM
Site adresinizi de alabilir miyim?
nascarsound.com site adresim ama hosta dosyaları atmadım henüz localde çalışıyorum  :(

uykudelisi_61

Quote from: uykudelisi_61 on February 22, 2009, 07:53:22 AM
Quote from: Yağız... on February 21, 2009, 09:42:24 AM
Site adresinizi de alabilir miyim?
nascarsound.com site adresim ama hosta dosyaları atmadım henüz localde çalışıyorum  :(
güncel (: unutuldum ben galiba.

Yağız...

Sorun resimlerin arkaplanı büyük olmasından kaynaklanıyor. Kodlarla ilgili bir sorun değil. Resimlerin boyutlarını küçültmelisiniz.

uykudelisi_61

#55
Resimi Ortalamak İçin
#kwick .kwick {
    display: block;
    cursor: pointer;
    overflow: hidden;
    height: 85px;
    width: 102px;
    background: #fff;
}


Üstte Style cssden Üstte Bulunan width: 102px; değerini 110 Yaptım Üstteki Boşluğu Kaldırmak İçinde

#kwick .kwicks {
   background-color:transparent;
    display: block;
    height: 80px;
    margin: 0px;
    margin-top: 8px;
    padding: 0

yine Üstte Bulunan margin-top: 8px; değerini 0 Yaptım

Sorunum Halloldu Kod Bilgim Yok Ama Deneme Yanılmada Bazen İşe Yarıyor Belki Başkasına Lazım Olur Diye Paylaşmak İstedim Yardım Etmeye Çalışan Herkeze Teşekkürler

cee山

Öncelikle Selamun aleykum konu için tşkrler...2.0 için ben yaptım buyrun kardeşler :

// Show the menu up top. Something like [home] [help] [profile] [logout]... burdan
// Generate a strip of buttons. buraya kadar silin ve hemen şunu ekleyin


// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{

global $context, $settings, $options, $scripturl, $txt;

echo '
<div id="kwick">
<ul class="kwicks">
  <li><a href="', $scripturl, '" class="kwick opt1">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/home.gif" alt="' . $txt[103] . '" /><span>' : $txt[103]), '</span></a></li>
  <li><a href="', $scripturl, '?action=help" class="kwick opt2" >', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/help.gif" alt="' . $txt[119] . '" /><span>' : $txt[119]), '</span></a></li>
<li><a href="', $scripturl, '?action=search" class="kwick opt3">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/search.gif" alt="' . $txt[182] . '" /><span>' : $txt[182]), '</span></a></li>
                        <li><a href="', $scripturl, '?action=admin"  class="kwick opt4">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/admin.gif" alt="' . $txt[2] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[182]), '</span></a></li>';
  if ($context['allow_memberlist'])
echo '<li><a href="', $scripturl, '?action=mlist" class="kwick opt6">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/memberlist.gif" alt="' . $txt[331] .'" /><span>' : $txt[331]), '</span></a></li>';
  if ($context['user']['is_logged'])
echo '<li><a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '" class="kwick opt7">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/logout.gif" alt="' . $txt[108] . '" /><span>' : $txt[108]), '</span></a></li>';
  if ($context['user']['is_guest'])  
echo '<li><a href="', $scripturl, '?action=login" class="kwick opt8">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/login.gif" alt="' . $txt[34] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[34]), '</span></a></li>';
  if ($context['user']['is_guest'])
echo '<li><a href="', $scripturl, '?action=register" class="kwick opt9">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/' . $context['user']['language'] . '/register.gif" alt="' . $txt[97] . '" style="margin: 0px 0;" border="0" /><span>' : $txt[97]), '</span></a></li>';
echo '</ul>

</div>';
}


bu kadar şu ekide yapın  tamamdır.

Bul:

</head>

Sonrasına Öncesine ekle fark etmez  :P:

<script language="JavaScript" type="text/javascript" src="', $settings['theme_url'], '/mootools.js"></script>
<script language="JavaScript" type="text/javascript" src="', $settings['theme_url'], '/imageMenu.js"></script>
<script language="JavaScript" type="text/javascript" src="', $settings['theme_url'], '/kwick.js"></script>



Selam ve Dua ile  konu için tekrar  tşkrler Hoochie Coochie Man

Yağız...

2.0 menü kodlarıyla uyuşmuyor... 2.0 sürümünde menü kodları tamamen değişti ve her temada aynı butonlar gözüküyor. Ama sizin verdiğiniz kodda her temaya farklı buton eklememiz gerekiyor. Burak'ın Google Tema'sını çevirirken bu kodları kullanmıştım:
// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context, $settings, $options, $scripturl, $txt;

echo '
<div id="kwick">
<ul class="kwicks">';
$x = 0;
foreach ($context['menu_buttons'] as $act => $button)
{
$x++;
echo '
<li>
<a title="', $act, '" href="', $button['href'], '" class="kwick opt', $x, '">
', $settings['use_image_buttons'] ? '<img src="' . $settings['lang_images_url'] . '/' . $act . '.gif" alt="' . $button['title'] . '" border="0" />' : $button['title'], '
</a>
</li>';
}

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

2.0 uyumlu kodlar bunlardır.

cee山

Şüpesiz ki bunlar ama şunu bilmek gerek direk moderas...üyeler etkisiz çıkıyor bunu nasıl düzeltmeyi düşünüyorsunuz ? Bide Mod ve Üyeler eklenince inşallah tamam olcak menü ama genede sizin verdiğiniz kodda yapabilirsek mode ve üyeler resimlerini çok harikulade olacak....

Selametle

Yağız...

Moderasyon için yeni bir buton yapılması gerekiyor. O yüzden öyle çıkıyor.

Advertisement: