CR_TurboGuy,
Not sure if you meant to do this or if it was an accident but in your
threadbit template you have...
Code:
<a href="showthread.php?$session[sessionurl]goto=newpost&t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']">
Which makes it so that when someone clicks on a thread it will take them to the last post of the thread rather than the first post.
Where IMO it should be
Code:
<a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']">
This way when someone clicks on a thread link it will take them to the first post of the thread, or if they click on the username: Today 01:24AM that shows below the thread title, it will take you to the last post of the thread.
================================================== ============
Another thing I noticed in the
threadbit template that is causing an issue with the the font size on the fourmdisplay
Your code which causes the text size to appear as you see in the red box on the right
Code:
<li style="text-align:left" class="inline">
Older code which causes the text size to appear as you see in the red box on the left
Unfortunately though when you change your code to just
<li> this causes the text to wrap instead of appear inline.
Any idea how to solve this?