in addition.css
search for:
Code:
.threadbit .threadlastpost {
clear: right;
display: block;
float: left;
padding: 0.5% 0 0;
width: 33%;
}
and replace with:
Code:
.threadbit .threadlastpost {
clear: left;
display: block;
float: right;
padding: 0.5% 0 0;
width: 36%;
}
search for:
Code:
.threadlisthead span.threadlastpost {
padding-left: 0;
text-align: left;
width: 33%;
}
and replace with:
Code:
.threadlisthead span.threadlastpost {
padding-left: 0;
text-align: right;
width: 35%;
}
search for:
Code:
.threadlisthead span.threadinfo {
width: 50%;
}
and replace with:
Code:
.threadlisthead span.threadinfo {
width: 48%;
}
That should fix the issue.