Quote:
Originally Posted by XFGHIA
Thanks for the plugin Chris, I also thought it would be good to have a closed thread in a different colour font, this shouldnt be hard for anyone to do anyway but this is what i done
if u used Chris M's plugin, edit the plugin and replace the PHP code with this code
Code:
if (!$thread['open'] && !$thread['sticky'])
{
$thread[threadtitle] = '<span style="text-decoration: line-through;"><font color=red>' . $thread[threadtitle] . '</font></span>';
}
i set mine to red, choose wateva u want
|
You should edit the <span> tag, not create a <font> tag:
PHP Code:
$thread[threadtitle] = '<span style="text-decoration: line-through; color: #FF0000;">' . $thread[threadtitle] . '</span>';
Chris