마 젠토 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>

나는 여기에 많은 주제가 있다는 것을 알고 있지만, 나는 그들 모두를 시도했고 그것을 작동시킬 수 없다 ...

답변:


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

나는 그들을 시도했지만 그들은로드되지 않는 것 같습니다. 내 페이지 소스를 볼 때 표시되지 않습니다.
dsolivier

NVM은, 내가 입력 한 내용에 오타가 있었다, 일)
dsolivier

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의 경우이 링크 를 참조 하십시오 .

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.