Sıfır default temaya göre anlatıyorum. Editli ya da default harici temalarda anlatım değişiklik arz edebilir.
şuradaki Aligned_and_Bilateral_Child_Boards modunu kurun.

Geçici demo: Spina Bifida - Forum

index.css
Bul:
Kod:

fieldset
{
border: 1px solid #c4c4c4;
padding: 1em;
margin: 0 0 0.5em 0;
}

Değiştir:
Kod:

fieldset
{
border: 1px solid #ff0000;
padding: 1em;
margin: 0 0 0.5em 0;
border-radius: 5px;
}

BoardIndex.template.php
Bul:
Kod:

{
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
if (!empty($board['children']))
{
// Sort the links into an array with new boards bold so it can be imploded.
$children = array();
/* Each child in each board's children has:
id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
foreach ($board['children'] as $child)
{
$child['link'] = '' . $child['name'] . '';
$children[] = $child['new'] ? '' . $child['link'] . '' : '' . $child['link'];
}

echo '
';

for(; &#36;child_counter < ceil(count(&#36;children)/2); &#36;child_counter++)
echo &#36;children[&#36;child_counter], '
';
}

echo '
';
for(; &#36;child_counter < count(&#36;children); &#36;child_counter++)
echo &#36;children[&#36;child_counter], '
';


echo '
';
}
}

Değiştir:
Kod:

{
// Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
if (!empty(&#36;board['children']))
{
// Sort the links into an array with new boards bold so it can be imploded.
&#36;children = array();
/* Each child in each board's children has:
id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
foreach (&#36;board['children'] as &#36;child)
{
&#36;child['link'] = '' . &#36;child['name'] . '';
&#36;children[] = &#36;child['new'] ? '' . &#36;child['link'] . '' : '' . &#36;child['link'];
}

echo '



' . &#36;txt['alt_bolumler'], '


';

for(; &#36;child_counter < ceil(count(&#36;children)/2); &#36;child_counter++)
echo &#36;children[&#36;child_counter], '
';
}

echo '
';
for(; &#36;child_counter < count(&#36;children); &#36;child_counter++)
echo &#36;children[&#36;child_counter], '
';


echo '

';

}
}

Modifications.english.php
Bul:
Kod:

?>

Değiştir:
Kod:

&#36;txt['alt_bolumler'] = 'Alt Bölümler';
?>

Çerçeve rengini kırmızı yerine farklı renkte yapmak için aşağıdaki kodda görülen ff0000 değerini index.css dosyanızdan değiştirebilirsiniz.
Kod:

fieldset
{
border: 1px solid #ff0000;
padding: 1em;
margin: 0 0 0.5em 0;
border-radius: 5px;
}



Kaynak: Alt bölümleri çerçeve içerisine almak