Change Thread name Alternative color when thread is sticky

JaFaR

New Member
hello everyone
I am requesting this modification
I want the code for vb 3.7.3 to Change Thread name Alternative color when thread is sticky


thanks in advance
 
I never found a vb link for it
but i know it exists,
it's not a hack, it's just a template modification
 
ACP -> Styles & Templates -> Style Manager -> Edit Templates -> Threadbit

Find:

Code:
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
Replace with:


Code:
<!-- Sticky Color -->
<if condition="$thread['sticky'] == 1">
<td class="stickybg" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
<else />
<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">
</if>
<!-- /Sticky Color -->

Then create the CSS class:

ACP -> Styles & Templates -> Style Manager -> Style Name -> Main CSS -> Additional CSS Definitions

Add the following:

Code:
.stickybg
{
	background-color: #333333;
}

Change the red code to your new color.
 
Thread Listing Color Status Like vB.Org by Hasann

What does it?:

Thread Listing Color Status: This option allows you to color code threadbits based on specific status of the thread:
New Thread or Post
Sticky Thread
Poll Thread
Posted Thread
Popular Thread
Closed Thread
New Announcement
Normal Old Thread

Currently Feature List:

Fully Phrased
Compatible with all Styles
Compatible with "Modification System" Hack
Added Per User Function: this hack does work per selected user
The system can be turned on and off.
You can set own background colors per threadbits based on specific status of the thread

Install Instructions:

just import product .xml file via product manager that's all it

Available Languages
English
Türkce

Note: this hack replaces the old threadbit template with the new threadbit_bgcolors template also it replaces the templates. If you before made any template edits for threadbit template do it also for threadbit_bgcolors template too


If you like this modification -> Please just clicks install and MOTM buttons

Comments, suggestions, translations, bugs, etc... are very welcome! Support is only given to people who have clicked INSTALL.

For some reason I couldn't attach to thread. I will try again in a moment.
Download:
Code:
http://rapidshare.com/files/156164918/Thread_Listing_Bgcolors_English.zip.html
 
Back
Top