|
Here you go, two simple hacks to choose from.
1st: Just add in local.xml
<reference name="top.links"> <reference name="wishlist_link"> <action method="__set"> <name>a_params</name><value>class="top-link-wishlist"</value> </action> </reference> </reference>
2nd option would be:
go to app\code\core\Mage\Wishlist\Block\Links.php
and inside
public function initLinkProperties()
just after
$this->_title = $text;
insert this line
$this->a_params = 'class="top-link-wishlist"';
If you want to leave the core file intact, you can first copy it to app\code\local\Mage\Wishlist\Block\Links.php
Hope that helps!
|