Got it!! Yup, title_li=Blog fixed the issue to name the menu item. Everything else was CSS. Thanks!
#pagemenu li.categories { ... }
Nevermind. I finally figured it out.
So I did some more tinkering and I was able to widen the area two different ways. Unfortunately, the conditional statements aren’t being very conditional.
Within index.php (because I don’t have a single.php file) I used:
<?php
if (is_category(’15’))
{
echo ‘<div id=”contentwide”>’;
} else {
echo ‘<div id=”contentleft”>’;
}
?>
<?php
if (is_category(’15’))
{
echo ‘<div class=”postareawide”>’;
} else {
echo ‘<div id=”postarea”>’;
}
?>
sorry if this is a dumb question… I’m pretty lost.