Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Works great! Thanks a lot.

    ripsey

    (@ripsey)

    I’m having the exact same problem, any leads on this?

    Thread Starter ripsey

    (@ripsey)

    Hmmmm… My two lists weren’t intermingling, and I’m still using the old code:

    —–

      Categories
      <?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>

    —–

    As for the Blogroll, I’ve split it up into three seperate calls:

    —–
    <?php wp_list_bookmarks(‘categorize=1&category=11&orderby=id’); ?>

    <?php wp_list_bookmarks(‘categorize=1&category=12&orderby=name’); ?>

    <?php wp_list_bookmarks(‘categorize=1&category=13&orderby=rand&limit=5’); ?>
    —–

    This allows me to have separate options to display ’em… The 1st one’s ordered by ID, the 2nd by name, and the last is random and limited to showing only 5.

    also…

    I used to have to style the Link Category headers (the h2 tag) by ID, and for each category…

    —–
    #linkcat-1 h2, #linkcat-2 h2, #linkcat-3 h2, #linkcat-4 h2, #linkcat-5 h2 {
    font-size: 11px;
    font-weight: normal;
    margin-bottom: 0px;
    margin-top: 7px;
    }
    —–

    But now can comfortably use the class tag, and only have to make a single style:

    —–
    .linkcat h2 {
    font-size: 11px;
    font-weight: normal;
    margin-bottom: 0px;
    margin-top: 7px;
    }
    —–

    Thread Starter ripsey

    (@ripsey)

    Thanks for the info.

    I just got into PHP while building my WP site, so I’m familiar enough… I hope.

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