Hey,
this requires quite some editing.
In your footer.php you can remove two or three of the boxes you'd want to use, there are four by standard
<div class='box box_mini'>
<h4>Pages</h4>
<ul>
<?php wp_list_pages('title_li=' ); ?>
</ul>
</div>
<div class='box box_mini'>
<h4>Archive</h4>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div class='box box_mini'>
<h4>Categories</h4>
<ul>
<?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=0'.$exclude); ?>
</ul>
</div>
<div class='box box_mini'>
<h4>Blogroll</h4>
<ul>
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
</ul>
</div>
Then, you need to remove the width of the small boxes.
This can be changed in your style.css under
.wrapper .box_mini {
margin-right: 20px;
width: 160px;
}
Then, in your tweets.css found in your plugin folder you'll need to find
div.tb_tweet
Here, you have to set a width for how wide you want each tweet to be and you need to add a left float.
So it looks somewhat like this
div.tb_tweet {
background: none repeat scroll 0% 0% transparent;
border-top: 1px dotted #CCCCCC;
float: left;
list-style: none outside none;
min-height: 60px;
overflow: hidden;
padding: 2px;
width: 100px;
}