Hello
html > body .home blog logged-in > div #wrapper > div #page > div .cats
I have a problem with selecting unordered lists (i.e ul > li.class-name class-name-number) at the above dom location in CSS. I am working with a wordpress theme.
Basically could I have suggestions for the correct selector to use in order to influence this tag? I can provide a simplified html structure if it will help.
I've tried a number of selectors along the lines of:
(sometimes)#page (# or .)cats (sometimes)ul li(sometimes with class name)
EDIT: I've tried the selectors suggested in the wordpress docs.
html structure:
<body class='*dynamic*'>
<div id="wrapper">
<div id="page">
<div id="header" role="banner">
<h1><a href=""></a>Header</h1>
<div class="description">Site info</div>
</div>
<div id="cats">
<ul>
<li class="page_item dynamically generated class"></li>
</ul>
<ul>
<li class="category_item dynamically generated class"></li>
</ul>
</div>
It is the two list structures I'm having problems with
div#cats ul {
font-size:24px;
}
This is testing style. When it's working, I'll be changing it.
As requested
FURTHER: I think this must be some sort of inheritance problem, so I'm going to attempt a slash and burn approach.
Thanks!