The recent topics mod, can be integrated into this mod, I believe. But I do not planning on having that option apart of Advanced Recent Posts.
Furthermore, you can change the table width by the following edit.
./Themes/default/BoardIndex.template.php
<table align="center" cellpadding="5" cellspacing="0" width="100%" border="0"> <table align="center" cellpadding="5" cellspacing="0" width="YOURWIDTH" border="0">Obviously, replacing "YOURWIDTH" with your desired with.
If you wish to change each column individually, you'll need to do some further editing.
./Themes/default/css/index.css
.arppost
{
background-color: #F6F6F6;
width: 20%;
text-align: center;
}.arppost
{
background-color: #F6F6F6;
text-align: center;
}
./Themes/default/BoardIndex.template.php
<td class="arppost arppost_hover arp_left">', $post['link'], '</td>
<td class="arppost arppost_hover arp_rest">', $post['poster']['link'], '</td>
<td class="arppost arppost_hover arp_rest">', $post['board']['link'], '</td>
<td class="arppost arppost_hover arp_rest">', $post['time'], '</td>
<td class="arppost arppost_hover arp_left" style="width: YOURWIDTH;">', $post['link'], '</td>
<td class="arppost arppost_hover arp_rest" style="width: YOURWIDTH;">', $post['poster']['link'], '</td>
<td class="arppost arppost_hover arp_rest" style="width: YOURWIDTH;">', $post['board']['link'], '</td>
<td class="arppost arppost_hover arp_rest" style="width: YOURWIDTH;">', $post['time'], '</td>