Quote:
Originally Posted by SnapOff Racing
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.
|
I purposefully did this, as I wanted to be taken to the
newest post when there was one, instead of the option of just going to the
last post. You are right though, there is a bug, in that it should only happen when there are new posts, not for every single post/link as it is currently. I fixed the conditional so that that is only there for new posts. The updated code is:
Code:
<span style="align:left"><a href="showthread.php?$session[sessionurl]<if condition="$show['gotonewpost']">goto=newpost&</if>t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"<if condition="$show['gotonewpost']"> style="font-weight:bold"</if>>$thread[threadtitle] ($thread[replycount])</a>
</span>
if you want to update your board to use the corrected stuff.
Quote:
Originally Posted by SnapOff Racing
================================================== ============
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?
|
I guess I'm not understanding the problem. I don't see any weird font size issues on my board. The screen shots you posted, it doesn't appear there's much difference in size. Am I missing something?
FYI - to anyone having issues w/ the mods I've done to this skin, if you can post a link to your board for me to take a look at, that helps a ton for me to try to figure out problems. If you don't want to post your link in the thread, feel free to PM me the link to take a look at.
Thanks,
--JOsh