Quote:
Originally Posted by Rakehel
Ok, I didn't realize guests didn't see the thumbs. It's been so long. I'll PM you.
|
Okay, create a plugin hooked at "parse_templates" with the PHP code:
PHP Code:
if (THIS_SCRIPT === 'index')
{
$template_hook['headinclude_css'] .= '<style>.alt2 {background: rgb(224, 224, 224) !important;}</style>';
}
You can make the background darker by using a lower number for the 3 values in the rgb() function, and to make it lighter, use a higher number (up to 255, which is what it is set at by default).