I use th JA-Sulfur template on a site where a custom php file is used to created news feeds. This php file is displayed in the wrapper. I’ve added the CSS reference. an that works fine.
<head>
<link rel="stylesheet" href="http://www.sitename.nl/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="http://www.sitename.nl/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="http://www.sitename.nl/templates/css/editor.css" type="text/css" />
<link rel="stylesheet" href="http://www.sitename.nl/templates/ja_sulfur/css/addons.css" type="text/css" />
<link rel="stylesheet" href="http://www.sitename.nl/templates/ja_sulfur/css/template.css" type="text/css" />
<link rel="stylesheet" href="http://www.sitename.nl/templates/ja_sulfur/css/typo.css" type="text/css" />
</head>
Now I try to add:
<?php if ($tmpTools->isIE()) { ?>
<link href="<?php echo $tmpTools->templateurl(); ?>/css/ie.php" rel="stylesheet" type="text/css" />
<link href="<?php echo $tmpTools->templateurl(); ?>/css/colors/<?php echo strtolower ($tmpTools->getParam(JA_TOOL_COLOR)); ?>-ie.php" rel="stylesheet" type="text/css" />
But I think i have to change:
<?php if ($tmpTools->isIE()) { ?>
Is that correct/ Where should I change it to?
Thanks in advance for any help!