HMBeaty |
12-08-2011 03:40 AM |
Changing this up a bit....in the headinclude template here:
HTML Code:
<!--[if lt IE 8]>
{vb:cssfile popupmenu-ie.css,vbulletin-ie.css,vbulletin-chrome-ie.css,vbulletin-formcontrols-ie.css,editor-ie.css}
<![endif]-->
{vb:raw template_hook.headinclude_css}
Would it be safe to say we can use the template hook headinclude_css to add on to the -ie.css? For example, I'd like to add sidebar-ie.css to it, but unsure if that would work (since I don't use IE 8).
Also, if we can use that hook location, would we use the same method of adding to the store css as files? Like this maybe? .....
HTML Code:
$template_hook['headinclude_css'] .= '<link type="text/css" rel="stylesheet" href="' . vB_Template::fetch_css_path() . 'sidebar-ie.css' . '?d=' . $style['dateline'] . '" />';
Or would it just be....
HTML Code:
$template_hook['headinclude_css'] .= 'sidebar-ie.css';
Thanks in advance :D
|