Quote:
Originally Posted by K4GAP
This is the code that displays the way I want it to on the light style. I need it to match the dark styles when displayed there. But still be light on the light style".
Code:
<center><iframe src="http://cache.www.gametracker.com/components/html0/?host=216.52.148.11:24240&bgColor=CCCCCC&fontColor=000000&titleBgColor=CCCCCC&titleColor=FF2B00&borderColor=F5F4F4&linkColor=493C08&borderLinkColor=4D4B4B&showMap=0¤tPlayersHeight=200&showCurrPlayers=1&showTopPlayers=0&showBlogs=0&width=270" frameborder="0" scrolling="no" width="270" height="388"></iframe></center>
--------------- Added [DATE]1406163954[/DATE] at [TIME]1406163954[/TIME] ---------------
While I'm thinking about it, if I could just exclude the widget from the dark styles that would be good too.
|
K so we simply make a new template in your style:
Template name: vbcms_widget_static_page_ts
Template contents:
Code:
<div class="teamspeakwidget">
<div class="cms_widget">
<div class="block">
<div class="cms_widget_header">
<h3><img src="{vb:stylevar imgdir_siteicons}/html.png" alt="" /> {vb:raw widget_title}</h3>
</div>
<div class="cms_widget_content widget_content">
{vb:raw static_html}
</div>
</div>
</div>
</div>
Now in additional.css add:
Code:
.teampseakwidget {
/* Do nothing but retain class */
}
^ So no errors in css i.e. no missing definitions and in template manager best to insert somehting even if commented out using /* commented out */ etc.
Now create a new plugin:
AdminCP > Plugins & Products > Add New Plugin
Product: vBulletin
Hook location: parse_templates
Title: Hide Teamspeak Widget per style
Execution Order: 5
PHP Code:
if (STYLEID == 99) {
$hidetswidget = '<style type="text/css">
.teamspeakwidget {
display:none !important;
}
</style>';
$template_hook[headinclude_bottom_css] .= $hidetswidget;
}
*Change 99 to the styleid # you want this to NOT show in and the css shown in the plugin code will kick in and hide it in styleid 99.
Now go back to the widgets in admincp, on your teamspeak widget change the template name being used to vbcms_widget_static_page_ts and save, now the widget should use this template and it will show in all styles except the one you excluded within the plugin.