Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
need more info. Is your home page is content or static block? – just code Nov 16 '12 at 7:20

2 Answers

up vote 3 down vote accepted

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>
share|improve this answer
thanks . IT worked – Nikhil_K_R Nov 16 '12 at 10:41

Try this

<cms_index_index>
    <reference name="your cms identifier for home page">
        <action method="addCss"><stylesheet>your path/your css file name</stylesheet></action>
    </reference>
</cms_index_index>

Please use this code in local.xml or page.xml

Am not 100% sure about the code work or not

share|improve this answer
didn't work for me. – Nikhil_K_R Nov 16 '12 at 12:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.