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