MyBB Community Forums

Full Version: custom style or class for the first post in the Thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello,

i want to add a custom class for the first post in a thread to be different with other posts Smile

exemple:

[Image: attachment.php?aid=26267]

thanks in advance
Smile Smile Smile
If you only want a specific class for the first post, but use the same layout, you can use {$postcounter} variable in your postbit/postbit_classic template.
Something like this:
<td class="trow2 post_content mytrow{$postcounter} {$unapproved_shade}">
Then create .mytrow1 class in your global.css.

If you want a specific layout for your first post, install XThreads, create postbit_first and/or postbit_first_classic template in your Global Templates, then style/design it as you want.
thanks so much RateU, i'll use the XThreads plugin Smile