Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

making main categories standout


harborsales

Recommended Posts

Posted
Is there anyway to make the main categories standout?  By standout I mean make them highlighted in bold.

 

Mike

 

 

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...