Jump to content

Where are the CSS files included


Recommended Posts

Hi @all

Where can I see the included css files for the shop templete ... I search the maintain.css and the global.css form the folder. First I tought they could only be inside the header.tlp ... but I don't find any line of code ...

... By the way - I know where the files are .... in the template directory structure - but I dont't find the include code for the template

Link to comment
Share on other sites

They are in an array set in header.php, then written to the page output in header.tpl (in the theme dir):

{if isset($css_files)}
   {foreach from=$css_files key=css_uri item=media}
       <link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" />
   {/foreach}
{/if}



Paul

Link to comment
Share on other sites

×
×
  • Create New...