I'm probably blind, but I can't seem to see where I can modify the color of the category count number via CSS. (see attached pic)
I did manage to change the color of the main item count for All Categories, but did that by hard-coding it into main.php and when I tried to do the same for the sub-category counts, it disappeared entirely.
Here is my temporary fix to at least try to figure it out (because I can't seem to find where it's controlled via CSS):
<?php while ( osc_has_categories() ) { ?>
<div class="category">
<h1><strong><a class="category <?php echo osc_category_slug() ; ?>" href="<?php echo osc_search_category_url() ; ?>"><?php echo osc_category_name() ; ?></a> <span> [color=red]<font color="#333333">[/color](<?php echo osc_category_total_items() ; ?>)</font></span></strong></h1>
<?php if ( osc_count_subcategories() > 0 ) { ?>
<ul>
<?php while ( osc_has_subcategories() ) { ?>
<li><a class="category <?php echo osc_category_slug() ; ?>" href="<?php echo osc_search_category_url() ; ?>"><?php echo osc_category_name() ; ?></a> <span> (<?php echo osc_category_total_items() ; ?>)</span></li>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php
if (($col==1 && $i==$col1_max_cat) || ($col==2 && $i==$col2_max_cat) || ($col==3 && $i==$col3_max_cat)) {
$i = 1;
$col++;
echo '</div>';
if($x < $total_categories) {
echo '<div class="col c'.$col.'">';
}
} else {
$i++ ;
}
$x++ ;
?>
<?php } ?>
Thanks in advance!