如何在 magento 管理顶部菜单中显示图像?就像甜食奖励扩展一样
问问题
125 次
1 回答
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/>
希望这是有用的。
于 2013-07-28T14:44:37.103 回答