support

How to add CSS & Javascript to Magento Themes?

In Web development JS & CSS files play a vital role, and work as a backbone or skelton of your website. While working on a Magento project you can do this into your Magento layout files.
For adding JS or CSS, you can do this in xml layout files using methods/action:

<action method="addJs"/>
<action method="addCss"/>
or 
<action method="addItem"/>

Or You could do that by hard-coding your тАЬhead.phtmlтАЭ file, but then those files will be loaded on all Magento pages. But this is not recommended at all.
All methods reside in Mage_Page_Block_Html_Head class. The first pair is addCss and addJs. You can use or script or file tags, both are allowed.

There is an XML configuration folder located in app/design/frontend/Package/theme/layout. The main one is called page.xml. In this you can add JS resources using below syntax:

<action method="addJs">
	<script>rarebird/cookie/jquery.cookiebar.js</script>
</action>

When you need to add CSS, you can add that like this:

<action method="addCss">
	<stylesheet>css/styles.css</stylesheet>
	<params>media="print"</params>
</action>

There is also a second argument. It allows you to send any additional parameters to be included into script or link tag.
The path of a script added by addJs method is relative to Magento root /js directory. For addCss method it is relative to skin directory of your theme.

Magento does some stuff in the background and auto tries to put you in the /js dir. There is a third way too , Its called addItem:

<action method="addItem">
	<type>skin_css</type>
	<name>css/styles-ie.css</name>
	<params/>
	<if>lt IE 8</if>
</action>

You can use js,js_css, skin_js, skin_css, link_rel or rss as a type.Generally addItem method accepts one more parameter called param. The params is the same as the one used for addJs and addCss. Then thereтАЩs if and condition.

If if is set the added link will be placed into wrapper. That means you will be able to limit its inclusion to some specific browser versions.

js will include a JavaScript file and will search it in /js directory of your Magento installation. This is similar to what addJs method does.

js_css will create a CSS link and will also search the file in /js directory. This is handy for including stylesheets of some JavaScript libraries.

skin_js will try to locate a referred JavaScript file in js directory of your theme.

skin_css will create a CSS link to relative to skin directory of your theme. This is similar to addCss method described above.

link_rel can be used to create a custom element with custom attributes. Can be used for including CSS files located remotely.

rss will create an RSS link.

<action method="addItem">
    <type>skin_css</type>
    <name>custom.css</name>
    <params />
    <if />
    <condition>this_custom_css_is_allowed</condition>
</action>

Once Magento executes “this_custom_css_is_allowed” is set on the head block and if yes and it is not false the js/css item will be included.

© 2008-2021 Copyright Startbit IT Solutions Pvt. Ltd.(Formerly known as Vivacity InfoTech Pvt. Ltd.) | All Rights Reserved.
Loading...