Index: faq.php =================================================================== --- faq.php (revision 8681) +++ faq.php (working copy) @@ -38,6 +38,7 @@ } // Pull the array data from the lang pack +$num_titles = 0; $help_blocks = array(); foreach ($user->help as $help_ary) { @@ -46,6 +47,7 @@ $template->assign_block_vars('faq_block', array( 'BLOCK_TITLE' => $help_ary[1]) ); + $num_titles++; continue; } @@ -59,9 +61,11 @@ // Lets build a page ... $template->assign_vars(array( 'L_FAQ_TITLE' => $l_title, - 'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP']) -); + 'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP'], + 'S_HALF' => (int) ($num_titles / 2), +)); + page_header($l_title); $template->set_filenames(array( Index: styles/prosilver/template/faq_body.html =================================================================== --- styles/prosilver/template/faq_body.html (revision 8681) +++ styles/prosilver/template/faq_body.html (working copy) @@ -7,7 +7,7 @@