Kullanıcı










- Katılım
- 29 Eyl 2012
- Mesajlar
- 1,022
- Beğeniler
- 0
- Favori Oyun
- Meslek
- Discord
- İsim


BoardIndex.template.php dosyasinda bunu bul:
Kod:
// If the board is new, show a strong indicator.
if ($board['new'])
echo '<img src="', $settings['images_url'], '/on.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// This board doesn't have new posts, but its children do.
elseif ($board['children_new'])
echo '<img src="', $settings['images_url'], '/on2.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// No new posts at all! The agony!!
else
echo '<img src="', $settings['images_url'], '/off.gif" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
Bununla Değiştir
Kod:
// If the board is new, show a strong indicator.
if ($board['new'])
echo '<img src="', $settings['images_url'], '/katicon/on_' . $board['id'] . '.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// This board doesn't have new posts, but its children do.
elseif ($board['children_new'])
echo '<img src="', $settings['images_url'], '/katicon/on_' . $board['id'] . '.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// No new posts at all! The agony!!
else
echo '<img src="', $settings['images_url'], '/katicon/off_' . $board['id'] . '.gif" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
Şimdi images klasorune katicon diye bir klasor yap her kategori icin resimler koy. ornegin 15 nolu kategori icin, on_15.gif ve off_15.gif seklinde.
Orjinal Boyutunda Açmak İçin ( 736x206 ve %3$sKB ) Buraya Tıklayın
Alıntıdır.
SmfGrup.com
[SIZE=13px][FONT=verdana][COLOR=#ff...şlığına İcon Resmi !...[/COLOR][/FONT][/SIZE]
Kod:
// If the board is new, show a strong indicator.
if ($board['new'])
echo '<img src="', $settings['images_url'], '/on.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// This board doesn't have new posts, but its children do.
elseif ($board['children_new'])
echo '<img src="', $settings['images_url'], '/on2.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// No new posts at all! The agony!!
else
echo '<img src="', $settings['images_url'], '/off.gif" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
Bununla Değiştir
Kod:
// If the board is new, show a strong indicator.
if ($board['new'])
echo '<img src="', $settings['images_url'], '/katicon/on_' . $board['id'] . '.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// This board doesn't have new posts, but its children do.
elseif ($board['children_new'])
echo '<img src="', $settings['images_url'], '/katicon/on_' . $board['id'] . '.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// No new posts at all! The agony!!
else
echo '<img src="', $settings['images_url'], '/katicon/off_' . $board['id'] . '.gif" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
Şimdi images klasorune katicon diye bir klasor yap her kategori icin resimler koy. ornegin 15 nolu kategori icin, on_15.gif ve off_15.gif seklinde.


Alıntıdır.
SmfGrup.com
[SIZE=13px][FONT=verdana][COLOR=#ff...şlığına İcon Resmi !...[/COLOR][/FONT][/SIZE]
