Freedom Fighter Posted December 11, 2002 Share Posted December 11, 2002 Hello.. I was wondering how to make the font for the main catagories in the products box bold. ONLY the main catagories, not the subcatagoires. Thanks, Alex Extreme Alterations Link to comment Share on other sites More sharing options...
Freedom Fighter Posted December 12, 2002 Author Share Posted December 12, 2002 Any help? Alex Extreme Alterations Link to comment Share on other sites More sharing options...
Aodhan Posted December 12, 2002 Share Posted December 12, 2002 Hello.. I was wondering how to make the font for the main catagories in the products box bold. ONLY the main catagories, not the subcatagoires. Thanks, Alex In the file includesboxescategories.php, change: // display category name $categories_string .= $foo[$counter]['name']; to be: // display category name if ($foo[$counter]['parent'] == 0) { $categories_string .= "<b>" . $foo[$counter]['name'] . "</b>"; } else { $categories_string .= $foo[$counter]['name']; } Although, this will make it hard to tell which category is currently selected, since a category gets bolded when you select it. Aodhan Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.