Support » Your WordPress » Bookmark problems

  • hello…. i have few problem with this wp_list_bookmark.
    well, how to explain this ah? my english is horrible.

    ok, first, i want to remove bullets from my category heading. here’s some example:-
    open
    i want to remove this bullet, but i dont know where to edit.. any ideas? FYI, i using this code:-
    <?php wp_list_bookmarks('categorize=1&category=23&before=<span>&after=</span>&show_images=0&show_description=0&orderby=name'); ?>

    second. i want to arrange the links like this:-
    open
    i want to list each link downward, not side-by-side (refer 1st picture). my best bet is using tables, but i dont like it. i want to use CSS, but i really dumb in CSS. any ideas on this?

    thanx in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • i want to remove this bullet

    In your stylesheet, you need to look for the ul that corresponds to your list item. Put in “list-style:none;”

    second. i want to arrange the links like this

    Again, find the corresponding list in your stylesheet. The code you’re using is utilizing <span> tags – which is why they’re side-by-side. You need to remove that (or change it to <li>) and then set your li’s to display:block; in your stylesheet.

    Better answers would come from an actual link to the site where we could see the code generated, not graphic representations.

    Thread Starter paskal

    (@paskal)

    ah thanks doodlebee… really appreciate that.. thanks alot again… maybe i’ll try this one a few more days and see what will happen…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bookmark problems’ is closed to new replies.