Indenting child categories
-
I’ve looked through the Codex pages dealing with child categories (esp. Styling with CSS), but still cannot get my site to diplay correctly. Any help will be greatly appreciated!
I would like my subcategories to be indented when displayed in the sidebar. I would like them to look something like this:
Theory
__Political Theory
__Sociology
__etc.My categories function call looks like this:
<?php wp_list_cats(‘sort_column=name&hide_empty=0&hierarchical=1&optioncount=1’);?>
In the style.css I’ve tried all of the following, to no avail:
#subcontent ul.categories ul li a {margin-left: 20px};
#subcontent ul.children li a {margin-left: 20px};
#subcontent ul ul li a {margin-left: 20px};
#subcontent ul ul li {margin-left: 20px};
.children li a {margin-left: 20px};
and a bunch of other combinations.Thanks again for any help!
- The topic ‘Indenting child categories’ is closed to new replies.