The stylesheet has this which seems relevant:
#menu {padding:0; border:0px solid #000000 }
#menu ul {list-style:none; margin:0; padding:0; font-size:85%;}
#menu ul li { padding:0; margin:0; border-bottom: #ddd3af solid 2px; }
#menu ul li a { display:block; padding:4px 4px 4px 10px; text-decoration:none;}`
#menu ul li a:hover { color:#C60C30; background: #DDD3AF; }
#menu ul li em { display:none; }
#menu ul li.sect { font-weight:bold; color:#00ff00; background:#89d; padding:2px 0; text-indent:2px; margin-top:2px;}
#menu ul li.first {margin-top:0; }
li .categories, li .linkcat, li .pagenav {
list-style: none;
margin: 0px;
padding: 10px;
}
Changing the Bolded section affects every item in the category section of the sidebar. This seems to me because it’s a link (as denoted by a)
Problem is that I don’t know where to change the information just so that certain markup affects the children as opposed to parent.
The web source follows:
<ul>
<li><a href="https://xxx/?cat=3" title="View all posts filed under Commercials">Commercials</a>
<ul class='children'>
<li><a href="https://xxx/?cat=6" title="View all posts filed under Christmas Commercials">Christmas Commercials</a>
</li>
<li><a href="https://xxx/?cat=7" title="View all posts filed under Patio Commercials">Patio Commercials</a>
</li>
</ul>
</li>
<li><a href="https://xxx/?cat=1" title="View all posts filed under How To">How To</a>
<ul class='children'>
<li><a href="https://xxx/?cat=4" title="View all posts filed under Christmas">Christmas</a>
</li>
<li><a href="https://xxx/?cat=5" title="View all posts filed under Patio">Patio</a>
</li>
</ul>
</li>