| рони, спасибо за ответ, я понимаю о чем идет речь, но не знаю как и где это исправить, так как нет пока навыков!Править нужно index.php в шаблоне?...
 
 <head>
 
 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 <?php
 if((bool) $this->helix->Param('loadjquery',0)==true ){
 $this->helix->addJQuery((bool)$this->helix->Param('loadfromcdn',0), true);
 }
 ?>
 <jdoc:include type="head" />
 <?php
 $this->helix->Header()
 ->addJS('helix.core.js') //core jsvascript file
 ->addJS('retina.js') //retina support file
 ->addJS('fixed-menu.js') //fixed menu
 ->addCSS('animate.css')
 ->setLessVariables(array(
 
 'preset'=>$this->helix->Preset(),
 'bg_color'=> $this->helix->PresetParam('_bg'),
 'text_color'=> $this->helix->PresetParam('_text'),
 'link_color'=> $this->helix->PresetParam('_link')
 ))
 ->addLess('master', 'template')
 ->addLess( 'presets',  'presets/'.$this->helix->Preset() );
 ?>
 </head>
 |