
12-25-2013, 10:36 AM
|
|
Quote:
Originally Posted by BirdOPrey5
Looks like I left out a special CSS template if the tagcloud is used.
For now you can fix by going to Admin CP -> Products & Plugins -> Plugin Manager
Edit the template Sidebar Anywhere CSS
Erase everything in the plugin and replace it with this code:
Code:
global $vbulletin, $sb_temps;
if ($sb_temps)
{
if ($vbulletin->options['storecssasfile'])
{
$template_hook[custom_css_links] .= '<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style' . str_pad($style['styleid'], 5, '0', STR_PAD_LEFT) . $vbulletin->stylevars['textdirection']['string'][0] . '/sidebar.css" />';
$template_hook[custom_css_links] .= '<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style' . str_pad($style['styleid'], 5, '0', STR_PAD_LEFT) . $vbulletin->stylevars['textdirection']['string'][0] . '/widgets.css" />';
$template_hook[custom_css_links] .= '<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style' . str_pad($style['styleid'], 5, '0', STR_PAD_LEFT) . $vbulletin->stylevars['textdirection']['string'][0] . '/forumhome.css" />';
$template_hook[custom_css_links] .= '<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style' . str_pad($style['styleid'], 5, '0', STR_PAD_LEFT) . $vbulletin->stylevars['textdirection']['string'][0] . '/tagcloud.css" />';
}
else
{
$template_hook[custom_css_list] .= 'sidebar.css,widgets.css,forumhome.css,tagcloud.css';
}
}
The tags should now be correct sizes on all pages.
I will make sure this fix is in the next update.
|
It works. Thanks!
|