在magento中仅从xml的主页添加css

Nik*_*K_R 6 css xml magento

想要从xml文件中包含仅适用于主页的css文件.
试过这个:

<cms_index_index>
 <action add css>
   .
   .
 </action> 
</cms_index_index>
Run Code Online (Sandbox Code Playgroud)

在local.xml中使用它在每个cms页面中添加了特定的css.
任何的想法 ?
提前致谢.

小智 9

在cms主页上有Design(Layout Update XML)使用下面的代码

<reference name="head">
 <action method="addItem"><type>skin_js</type><name>js/myjavascript.js</name></action>
</reference>
Run Code Online (Sandbox Code Playgroud)