Is it possible to edit/change the search bar menu that has the "special offers", "bookmarks", "contact"..etc.. links? I'm not seeing it..
Unfortunately, this part is not managed in the control panel yet.
It can be edited in the template file /storefront/view/default/template/common/header.tpl
I've added a home link to the bar - how do I gt the home icon to display with it ?
<li><a href="<?php echo $home; ?>" class="home"><?php echo $text_home; ?></a></li>
<li class="nav_sep"> </li>
Thanks,
Ronan
Add below example code to: /storefront/view/default/stylesheet/stylesheet.css
#info_links .home {
background: url('../image/home.png') 0 50% no-repeat;
}
You need to add icon to image directory :P
Thanks a mill......worked a treat ;-)