如何在magento admin顶级菜单中显示图像?完全像甜食奖励延期
答案 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 tag
和action tag
之间的四行,即
<liParams/>
<aParams>class="classname"</aParams>
<beforeText/>
<afterText/>
希望这很有用。