• I want to display my link categories, but I dont want them bulleted. I want them like every other link on my site. (https://larrikin.50free.org). I also dont want include what category it is in at the top of each category, just a simple space. Any idea how to do this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • You should use CSS to change this. Here is a section of my code from my site (seperate out the cat list). I removed some of the stylings so that it will be more easily understood.
    /* I usually seperate the cat list out in it's own DIV
    but you have to make sure that if tyou customise this that
    you surround the cat_list function with UL*/
    .topmenu {
    background-color: #153B13;
    }
    /* this can be changed to what ever you like but I usually make it 0 */
    .topmenu ul {
    margin: 0px;
    padding: 0px;
    }
    .topmenu ul li {
    /* element is most important it takes the dots away. */
    list-style-type: none;
    /* this will make every item in the list line up next to each other */
    display: inline;
    margin: 0px;
    padding: 0px;
    }
    /* and finnally the styling for the link itself */
    .topmenu ul li a {
    margin: 0px;
    padding: 0px;
    }

    I use a more complicated on on my site https://www.vminc.net

    Use get_links, it returns a list of your links, w/o headings and w/o bullets…. it takes a ton of parameters, so if you need the skinny on it, look for it in the wp-link/links.php file.
    TG

    Thread Starter larrikin

    (@larrikin)

    Ok im using get_linksbyname and ive got it all formatted how i want except for one thing, its not in ABC order. Ive barely ever used php so I really have no idea what im doing heres what i have
    <?get_linksbyname(‘journals’,’

    • ‘, ‘
    • ‘, $orderby=’name’) ?>
      What am i doing wrong. All that does is list what I want then put a text name after them

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Link Category Help’ is closed to new replies.