Temaya 3 Catbg Eklemek
Boardindex.template.php açıp bulun
Kod:
/* Each category in categories is made up of:
buraya kadar silin(aşağıdakini silmeyin)
Kod:
/* Each board in each category's boards has:
bunu yapıştırın
Kod:
/* Each category in categories is made up of: id, href, link, name, is_collapsed (is it collapsed?), can_collapse (is it okay if it is?), new (is it new?), collapse_href (href to collapse/expand), collapse_image (up/down iamge), and boards. (see below.) */ $first = true; foreach ($context['categories'] as $category) { echo ' <tr> <div style="margin-top: ' , $first ? '0;' : '3ex;' , '' , $context['browser']['needs_size_fix'] && $context['browser']['is_ie6'] ? 'width: 100%;' : '', '"> <table width="100%" cellspacing="0" cellpadding="0"> <TD vAlign=top align=left ><IMG src="', $settings['images_url'], '/', $context['right_to_left'] ? 'catbgsag.gif' : 'catbgsol.gif', '" border=0></TD> <td width="100%" class="catbg', $category['new'] ? '2' : '', '" style="padding: 5px 5px 5px 10px;">'; $first = false; // If this category even can collapse, show a link to collapse it. if ($category['can_collapse']) echo ' <div style="float: right"> <a href="', $category['collapse_href'], '">', $category['collapse_image'], '</a></div>'; echo ' ', $category['link'], ' <TD vAlign=top align=right ><IMG src="', $settings['images_url'], '/', $context['right_to_left'] ? 'catbgsol.gif' : 'catbgsag.gif', '" border=0></TD></div>'; // Assuming the category hasn't been collapsed... if ( $category['is_collapsed']) { echo ' <table border="0" width="100%" cellspacing="1" cellpadding="3" > <tr> <td class="titlebg"></td> <td class="titlebg" style="text-align:left;">', $txt[20], '</td> <td class="titlebg"><center>', $txt[22], '</center></td> <td class="titlebg"><center>', $txt[330], '</center></td> <td class="titlebg"><center>', $txt[21], '</center></td> </tr>';
kodlardaki catbgsol ilk, catbg kodlarda verilmemiş olan zaten normal catbg, kodlarda verilmiş olan catbgsag son catbg olarak ayarlayabilirsiniz.uzantıları kodlarda gif olarak verdim sizin elinizde ne var uzantıya göre ayarlayıp imagese atın.
|