Quote:
Originally Posted by betterthanyours
Right
Postfoot is giving me some problems. Postfoot for the site (forum) is 906px however, I need postfoot in PM to be 700px. When I set this in postbit.css, it sets it globally for the forum!
Any way around that?
Thanks in advance
|
You could use a plugin to add the needed CSS only on the private message page. To do so, add a plugin as follows:
Product: vBulletin
Hook Location: parse_templates
Title: Set "postfoot" Width For Private Messages
Execution Order: 5
Plugin PHP Code:
PHP Code:
if (THIS_SCRIPT === 'private')
{
$template_hook['headinclude_css'] .= '<style>.postfoot {width: 700px !important;}</style>';
}
Plugin is Active: Yes
Then click "Save".
I haven't tested this, so please let me know if this works as desired.