php - Wordpress change sub-category class -
i'm having trouble wordpress site.
i have page displaying categories , sub-categories. displayed in <ul>
.
now want give sub-categories class style them differently.
is possible walker maybe?
i can't change template because it's loaded in via plugin (events manager)
edit: html generated:
<ul> <li>category</li> <li>sub-category</li> <li>sub-category</li> <li>category</li> <li>sub-category</li> <li>sub-category</li> </ul>
i can't change template because it's loaded in via plugin (events manager)
it depends on plugin. should @ documentation plugin. plugins load default template allow override 1 of own in theme. plugin may provide filter allows customize output, seems specific customization you're not find.
did know can target child <ul>
elements in css without class? instance, following target <ul>
elements nested under <ul>
element:
ul ul { background-color: red; }
Comments
Post a Comment