Hello ,
You can control this by css .
<?php if (is_page('5904')) : ?> //the feed list page
<ul class="bookmarks_list"><?php wp_list_bookmarks('title_li=&categorize=0&category=24'); ?></ul>
<?php endif; ?>
Now in css .
.bookmarks_list li{
width:100px ;/*you can adjust this*/
display:block;
float:left;
padding:3px;
}
may be your problem is solved .
Thanks
Ahmed Jasim