Quote:
Originally Posted by SuperTaz
Any word on if this mod will be updated?
|
One of the sites I help with (vB 4.2.3) uses this product, and the only issue I had with it was the position of the spam-decimator button, which I fixed with a plugin hooked at "parse_templates" with the code:
PHP Code:
global $vbulletin;
if ($vbulletin->options['sd_enabled'] AND in_array(THIS_SCRIPT, array('showthread', 'private')))
{
$template_hook['headinclude_css'] .= '<style>.decimator_link {height: 0 !important; padding: 0 !important;} .decimator_link img {position: relative !important; height: 15px !important; margin-right: 10px !important;}</style>';
}