1

Topic: seperating Sticky's from regular threads

I think it would be nice to make a small disctinction between the Sticky threads and the others. A simple horizontal line would be enough.
Any ideas on how the code could be changed to make this happen?

2

Re: seperating Sticky's from regular threads

The easiest way to make a distinction is to give sticky topics a different background colour, perhaps one shade darker than the normal background colour. Just add this to your colour scheme stylesheet.
.pun tr.isticky td {background-color: whatever}

Adding a horizontal line under the last sticky is more difficult because you first have to identify which is the last sticky and that means adding a seperate class to the row by changing the php in the loop which generates it.

3

Re: seperating Sticky's from regular threads

Thanks for the suggestion Paul, I'll do the colour-thing wink

4

Re: seperating Sticky's from regular threads

You can actually use that class to style sticky posts in other ways as well e.g. different colour text, larger font size, more padding so the rows are taller or style individual columns etc.