BoardIndex.template.php
Aşağıdaki kodu bulun:
// If theres no parent boards we can see, avoid showing an empty category (unless its collapsed)
if (empty($category['boards']) && !$category['is_collapsed'])
continue;
echo '
<table class="table_list">
<tbody class="header" id="category_', $category['id'], '">
<tr>
<td>
<div class="cat_bar">
<h3 class="catbg">';
// If this category even can collapse, show a link to collapse it.
if ($category['can_collapse'])
echo '
<a class="collapse" href="', $category['collapse_href'], '">', $category['collapse_image'], '</a>';
if (!$context['user']['is_guest'] && !empty($category['show_unread']))
echo '
<a class="unreadlink hidden-xs hidden-sm" href="', $scripturl, '?action=unread;c=', $category['id'], '">', $txt['view_unread_category'], '</a>';
echo '
', $category['link'], '
</h3>
</div>
Bununla Değiştirin:
// If theres no parent boards we can see, avoid showing an empty category (unless its collapsed)
if (empty($category['boards']) && !$category['is_collapsed'])
continue;
echo '
<tbody class="header" id="category_', $category['id'], '">
<tr>
<td colspan="4">
<div class="cat_bar">
<h3 class="catbg">';
// If this category even can collapse, show a link to collapse it.
if ($category['can_collapse'])
echo '
<a class="collapse" href="', $category['collapse_href'], '">', $category['collapse_image'], '</a>';
if (!$context['user']['is_guest'] && !empty($category['show_unread']))
echo '
<a class="unreadlink" href="', $scripturl, '?action=unread;c=', $category['id'], '">', $txt['view_unread_category'], '</a>';
echo '
', $category['link'], '
</h3>
</div>
<div class="headercat">
<img src="', $settings['images_url'], '/cat/', $category['id'], '.jpg" alt="category" />
</div>
Temanızın image kilasorunun icine cat diye bir kilasor oluşturun.
Resimlerinizi bunun icine atacağız.
Uzantılarını katagori nosuna göre değiştirin. 1.2.3. gibi.
index.css en altına ekleyin.
img
{
max-width: 100%;
height: auto;
}