harborsales Posted January 7, 2005 Posted January 7, 2005 Is there anyway to make the main categories standout? By standout I mean make them highlighted in bold. Mike
boxtel Posted January 7, 2005 Posted January 7, 2005 Is there anyway to make the main categories standout? By standout I mean make them highlighted in bold. Mike <{POST_SNAPBACK}> in categories.php box you could find : if (isset($cPath_array) && in_array($counter, $cPath_array)) { $categories_string .= '<b>'; } // display category name $categories_string .= $tree[$counter]['name']; if (isset($cPath_array) && in_array($counter, $cPath_array)) { $categories_string .= '</b>'; } this causes the category to be bold when in that category page. you can extend that by adding the condition : if ($tree[$counter]['parent'] == 0) { this means it is a top category Treasurer MFC
Recommended Posts
Archived
This topic is now archived and is closed to further replies.