在链接中添加图标而不是标签

时间:2014-01-06 08:51:41

标签: magento-1.8 magento-layout-xml

我写了这段代码:

<action method="addLink" translate="label title" module="checkout">
    <label>Cart</label>
    <url helper="checkout/url/getCartUrl"/>
    <title>Cart</title>
    <prepare/>
    <urlParams/>
    <position>150</position>
</action>

但我想展示一张图片而不是label 购物车。我怎样才能在上面的 xml 代码中添加图片?

1 个答案:

答案 0 :(得分:1)

<action method="addLink" translate="label title" module="checkout">
    <label>Cart</label>
    <url helper="checkout/url/getCartUrl"/>
    <title>Cart</title>
    <prepare/>
    <urlParams/>
    <position>150</position>
    <liParams />
    <aParams><![CDATA[ class="cart"]]></aParams>
</action>

这应该向cart元素添加一个类<a>。您可以在隐藏文本的类上添加css并显示图标。