Butonları Sağa Dayalı Yapmak İçin :
index.template.php de Aşağıdaki Kodu Bul :
PHP- Kodu:
// Show the start of the tab section.
echo '
<table cellpadding="0" cellspacing="0" border="0" style="margin-left: 10px;">
<tr>
<td class="maintab_' , $first , '"> </td>';
Aşağıdaki Kod İle Değiştir :
PHP- Kodu:
// Show the start of the tab section.
[color=red]echo '
<table cellpadding="0" cellspacing="0" border="0" align="right" style="margin-left: 10px;">
<tr>
<td class="maintab_' , $first , '"> </td>';[/color]
Butonları Ortalamak İçin :
Bul :
PHP- Kodu:
// Show the start of the tab section.
[color=red]echo '
<table cellpadding="0" cellspacing="0" border="0" style="margin-left: 10px;">
<tr>
<td class="maintab_' , $first , '"> </td>';[/color]
Değiştir :
PHP- Kodu:
[color=#007700][color=red]echo '// Show the start of the tab section.
<center><table cellpadding="0" cellspacing="0" border="0" style="margin-left: 10px;">
<tr>
<td class="maintab_' , $first , '"> </td>';[/color][/color]
Bul :
PHP- Kodu:
// The end of tab section.
echo '
<td class="maintab_' , $last , '"> </td>
</tr>
</table>';
}
Değiştir:
PHP- Kodu:
// The end of tab section.
echo '
<td class="maintab_' , $last , '"> </td>
</tr>
</table></center>';
}