I am calling a css file from a theme skin folder located at
/skin/frontend/[myfolder]/default/css/reset.css
in a layout block
<block type="page/html_head" name="head" as="head" template="[mylayoutfolder]/html/head.phtml">
<action method="addCss"><type>css</type><stylesheet>reset.css</stylesheet></action>
</block>
This appears in the HTML but incorrectly as
<link rel="stylesheet" type="text/css" href="http://ae2015.uk/skin/frontend/[myfolder]/default/css" reset.css />
If I change the < type > to be skin_css then the output is:
<link rel="stylesheet" type="text/css" href="http://ae2015.uk/skin/frontend/base/default/skincss" reset.css />
Any clues as to what is going on gang?