Add css to only homepage from xml in magento

css, magento, xml

Solution

In the cms home page there is Design(Layout Update XML) use the following code in that

<reference name="head">
 <action method="addItem"><type>skin_js</type><name>js/myjavascript.js</name></action>
</reference>

Problem

Want to include css file which is applicable to only homepage from xml file. Tried this : ``` <cms_index_index> <action add css> . . </action> </cms_index_index> ``` using this in local.xml adds that particular css in every cms page. Any Idea ? Thanks in Advance.

Original source