• Can anyone advise how to bold the parent categories in the sidebar only? I want the child categories to remain un-bolded.

    Example:

    Categories

    Parent
    -Child
    -Child

    Parent
    -Child
    -Child

Viewing 4 replies - 1 through 4 (of 4 total)
  • that depends on the html/css of the list.

    if it is using the standard category widget set to show hierarchy, which outputs the list as an unordered list with a few levels, this might work:
    (with .widget_categories being the widget css class)

    .widget_categories ul { font-weight:bold;}
    .widget_categories ul ul { font-weight: normal; }

    otherwise:
    link to your site?

    Thread Starter kenmontdg

    (@kenmontdg)

    Thanks for your reply! Here is the page in development:

    http://antonycoukos.ipower.com/the_latest/

    I am migrating the live site (ExperienceTheWonder.com) to a new server so the domain name is only temporary.

    I tried adding the styles to the CSS as recommended above, but no change was affected.

    Any further advice would be much appreciated!

    in your case, the associated link styles seem to overwrite the ul styles;

    try:

    .widget_categories ul a { font-weight:bold; }
    .widget_categories ul ul a { font-weight:normal; }
    Thread Starter kenmontdg

    (@kenmontdg)

    Brill! That totally worked and thank you so much 🙂

    Now stumped as to why a couple of my dates are not showing in the loop – but fine in the single… any insight?

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Bold Parent Categories only?’ is closed to new replies.