• I have added categories to my right side bar, it’s a dropdown.
    How do I change the colour of the font in the categories list?
    Working with Customize theme.

Viewing 1 replies (of 1 total)
  • You’d need to change the generated widget markup created by register_sidebar in functions.php from:

    ‘before_widget’ => ‘<div id=”widget_sidebar” class=”widget-area”>’,

    to something like:

    ‘before_widget’ => ‘<div id=”widget_sidebar” class=”widget-area %2$s”>’,

    In theory, this would add a class ‘widget_text’ to the output that you could then use in your CSS.

Viewing 1 replies (of 1 total)

The topic ‘Change Categories Colour’ is closed to new replies.