AbanteCart Community

eCommerce construction => Installation and Configuration => Configuration => Topic started by: Palamedes on March 06, 2012, 05:42:56 PM

Title: Changing search bar menu?
Post by: Palamedes on March 06, 2012, 05:42:56 PM
Is it possible to edit/change the search bar menu that has the "special offers", "bookmarks", "contact"..etc.. links?  I'm not seeing it..
Title: Re: Changing search bar menu?
Post by: abantecart on March 06, 2012, 09:45:06 PM
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

 
Title: Re: Changing search bar menu?
Post by: ronanmag on January 05, 2013, 11:25:11 AM
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">&nbsp;</li>

Thanks,
Ronan
Title: Re: Changing search bar menu?
Post by: abantecart on January 07, 2013, 05:27:13 AM
Add below example code to: /storefront/view/default/stylesheet/stylesheet.css

Code: [Select]
#info_links .home {
background: url('../image/home.png') 0 50% no-repeat;
}

You need to add icon to image directory   :P
Title: Re: Changing search bar menu?
Post by: ronanmag on January 09, 2013, 08:26:01 AM
Thanks a mill......worked a treat ;-)