Freedom Fighter Posted December 11, 2002 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
Freedom Fighter Posted December 12, 2002 Author Posted December 12, 2002 Any help? Alex Extreme Alterations
Aodhan Posted December 12, 2002 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.