If the languageid is 4 for English, then you want:
PHP Code:
if (THIS_SCRIPT === 'misc')
{
if ($vbulletin->userinfo['languageid'] == '4')
{
$css = '.english {display: block;}.german {display: none;}';
}
else
{
$css = '.english {display: none;}.german {display: block;}';
}
$template_hook['headinclude_css'] .= '<style>' . $css . '</style>';
}
Can you post a screenshot of your product settings?