Magento 1.9:将自定义CSS文件添加到头部


10

我需要将自定义CSS文件添加到Magento,然后在整个网站范围内使用。我知道您必须将此添加到local.xml文件中,但是,我添加的样式表并未加载。

有人可以帮忙吗?

这是我添加到local.xml文件中的内容:

<?xml version="1.0">
<layout>
    <default>
        <reference name="head">
            <action method="addCss”><type>skin_css</type><file>css/javcustom.css</file></action>
        </reference>
    </default>
</layout>

我知道这里有很多主题,但是我已经尝试了所有主题,但我无法使其正常工作...

Answers:


23

有两种将css添加到head的方法one is using function addCss ,另一种是addItem。您有两种混合格式。您的格式错误。

尝试这个

<action method="addCss">
    <stylesheet>css/javcustom.css</stylesheet>
</action>

代替

<action method="addCss">
    <type>skin_css</type>
    <file>css/javcustom.css</file>
</action>

或尝试这个

<action method="addItem">
    <type>skin_css</type>
    <name>css/javcustom.css</name>
</action>

好阿米特·贝拉。
easymoden00b 2015年

我尝试了它们,但它们似乎没有加载。当查看我的页面资源时,它们只是没有显示出来
dsolivier 2015年

nvm,它起作用了,我输入的内容有错字;)
dsolivier 2015年

1
确认,也为我工作!
camdixon

3

要添加CSS文件,请执行以下步骤:

Open File
app\design\frontend\rwd\default\layout\page.xml
Add the below tag for css:
<action method="addCss"><stylesheet>css/[filename].css</stylesheet></action>

Just below the last method=”addCss add the above line.
Now open,
skin\frontend\rwd\default\css\[filename].css

Start writing your css code in this file.

要添加JS文件,请执行以下步骤。

Open File
app\design\frontend\rwd\default\layout\page.xml
Add the below tag
<action method="addItem"><type>skin_js</type><name>js/[filename].js</name></action>

Just below the js include tags similar to the above line.
Now open,
skin\frontend\rwd\default\js\[filename].js

Start writing your js code in this file.

对于Magento 2,请参考此链接

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.