如何在甜心奖励的magento管理员顶级菜单中显示图像?

时间:2013-07-28 13:14:11

标签: magento

如何在magento admin顶级菜单中显示图像?完全像甜食奖励延期

1 个答案:

答案 0 :(得分:2)

您可以在要添加图像的链接中添加一个类。

<reference name="top.links">
     <action method="addLink" translate="label title" module="customer">
            <label>My account</label>
            <url helper="customer/getLogoutUrl"/>
            <title>My account</title>
            <prepare/>
            <urlParams/>
            <position>100</position>
            <liParams/>
            <aParams>class="classname"</aParams>
            <beforeText/>
            <afterText/>
     </action>       
 </reference>

添加position tagaction tag之间的四行,即

<liParams/>
<aParams>class="classname"</aParams>
<beforeText/>
<afterText/>

希望这很有用。