Hmmm…
If it try this code, with .current-cat, and style .current-cat, I’m left with the same scenario, and don’t know why…
<div class="navwidth">
<ul class="navigation">
<?php
if (is_home()) {$pg_li .="current_page_item";}
?>
<li class="<?php echo $pg_li; ?>">
<a href="<?php bloginfo('siteurl'); ?>" title="Blog">
<span>Blog</span>
</a>
</li>
<?php wp_list_pages('depth=1&title_li=&exclude=143&sort_column=menu_order' ); ?>
</ul>
<ul class="navigation">
<?php
if (is_home()) {$pg_li .=".current-cat";}
?>
<?php wp_list_cats(); ?>
</ul>
</div>
Should using is_archive() or is_category() work??
Thanks again!