Move search bar from title on main page in magento

I am new to magento. I wanted to move the search bar from the title to the middle position on the home page so that it only appears on the home page.

I read a lot of related answers on the magento forum, but everyone is trying to edit the .mini-search element in box.css, but unfortunately I do not have such an element in this file.

So how can I do this?

+3
source share
1 answer

you need to edit catalogsearch.xmlthe theme layout folder and delete the following lines:

<reference name="header">
     <block type="core/template" name="top.search" as="topSearch" template="catalogsearch/form.mini.phtml"/>
 </reference>

. , . CMS > . "", :

{{block type="core/template" name="home.search" as="homeSearch" template="catalogsearch/form.mini.phtml"}}

,
JD

+8

All Articles