vBulletin 4 Trick : Change Thread Title Colors
This will change the color of a thread’s title based on its status. You can set different colors for Sticky, Locked and Hot threads.
First, login to your Admin Control Panel. Then Admin CP > Styles & Templates > Style Manager. Choose “Edit Templates” from the dropdown menu beside the style you want to edit. Then double click of the “CSS Templates” and again double click on the “additional.css”. This will open the css template in a editor. Now copy and paste the following CSS at the bottom of the template.
.sticky a.title {color: green;font-weight:bold;}
.lock a.title {color: red; font-style:italic;}
.hot a.title {color: maroon;font-weight:bold;}

And, “Save” it. It’ll show your sticky thread in bold green, locked thread in italicized red and hot thread in bold maroon. You can also use the hexadecimal color code and change it to suite your need.
Please note, this is what I found on the internet and wrote this article solely for this blog.






















thank you very much.. it works