• Right now i am currently using a sidebar and to list the categories i amusing the call

    <?php wp_list_cats('sort_column=name'); ?>

    but i am looking for some insight how to be able to control each category that displays font, i doubt there is any sort of plugin for something like this.

    say for instance
    i have three categories: baseball, basketball and soccer

    how would i go about being able to make baseball in a monospace, basketball in a fantasy type, and soccer in a serif.

    i am kinda lost on what type of approach i should take.

    thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • What I would do:

    <li id="baseball">Baseball
    <ul><?php wp_get_links(1); ?></ul>
    </li>

    <li id="basket">Basketball
    <ul><?php wp_get_links(2); ?></ul>
    </li>

    <li id="soccer">Soccer
    <ul><?php wp_get_links(3); ?></ul>
    </li>

    li#baseball {
    font: monospace;
    }

    li#basket {
    font: fantasy;
    }

    li#soccer {
    font: serif;
    }

    The font lines above would need proper attention, but that would work.

    The number in brackets is the Cat ID for the link cat.

    Thread Starter tmyknocker

    (@tmyknocker)

    thanks for the reply.

    crap, my wording might be off.

    let me work on an example then i’ll post back.

    thanks for the swift reply podz

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘sidebar fonts and controlling font face and size’ is closed to new replies.