is there absolutely any way where i can specify only a particular parent class and then automatically have its children also listed? But I only want 1 parent at a time to be listed.
Another possible workaround that i have created requires me to add html tags like ul/li to the php code like
<li id='heybaby'>".wp_list_categories('include=3&hide_empty=0&hierarchical=1&title_li=')."</li>"
but over here i cannot access the #heybaby via css because of wp_list_categories. If i change the wp_list_categories to something else (along with respective include statements etc…) the css code will work? Why is it that for wp_list_categories the css doesn’t work? Any ideas?