I have gotten my wp_list_bookmarks to display inline, like this: link1, link2, link3, link4,
BUT, my wp_list_categories won't display inline like that they instead display like this: cat1
cat2
cat3
I was also trying to figure out how to get rid of the comma after the last link listed under wp_list_bookmarks and eventually wp_list_categories. The following are my current function calls for both.
<?php wp_list_categories('before=<li style="display:inline">&after=,&orderby=name&title_li=&style=none'); ?>
<?php wp_list_bookmarks('before=<li style="display:inline">&after=,&title_li=&title_before=<p>&title_after=</p>&categorize=0&category=2'); ?>