For those having overlapping text issues with the postbit area, you can make a quick edit to the postbit_articles template by searching for this line...
Code:
<div id="post_message_$post[postid]">$post[message]</div>
and changing it to this....
Code:
<div style="width:95%;" id="post_message_$post[postid]">$post[message]</div>
Example:
George Washington - Official President Thread
Another fix was to include the AdLocation correctly in the template. Go to postbit_articles template and search for this...
Code:
<!-- message -->
<div id="post_message_$post[postid]">$post[message]</div>
<!-- / message -->
and replace it with....
Code:
<!-- message -->
<div id="post_message_$post[postid]">
$ad_location[ad_showthread_firstpost_start]
$post[message]
</div>
<!-- / message -->
Hope that helps :up: