I am using latest version of magento and i want to create div tag into li of toplinks in magento for cart link only. How can i do it? For class I have added
<liParams><class>mini-top-cart</class></liParams>
but its also not working
如果您尝试仅在顶部链接中的“我的购物车链接”上进行一些设计更改,那么您可以轻松完成,而无需提及 div 类,只需更改默认定义为“top-link-cart”的“a”类. 因此,如果您覆盖放置在 core/Mage/Checkout/Block/Links.php 下的 Links 块并将其移动到本地文件夹以供将来校对,然后在函数 addCartLink() 中将底部定义的 $parentBlock 更改为拥有自己的类,它看起来像:
$parentBlock->addLink($text, 'checkout/cart', $text, true, array(), 50, null, 'class="top-link-cart"');
将其替换为您自己的类,例如迷你顶推车。
$parentBlock->addLink($text, 'checkout/cart', $text, true, array(), 50, null, 'class="mini-top-cart"');
完成后,您可以通过添加
a.mini-top-cart {
your styles here }
希望有帮助