Magento – How to add custom css in magento footer pages

csslayoutmagento-1.9

How do I add custom CSS or JS to for a particular page?

Suppose,i want add a custom css file for Checkout cart which will only show n at Cart.

Example: like a FAQ or any single page

Best Answer

if you want to add a css file to all cms pages add this to your local.xml

<layout>
    <cms_page_view>
        <reference name="head">
            <action method="addItem">
               <type>skin_css</type>
               <name>path/to/file.css</name>
            </action>
       </reference>
    </cms_page_view>
</layout>

If you want a css file just for the FAQ page, go to that CMS page and go to Design tab in the left menu and insert:

<reference name="head">
  <action method="addItem">
    <type>skin_css</type><name>path/to/file.css</name>
  </action>
</reference>