I'm pretty new to magento and I would like to customize the store front-end.
I'm using Magento 1.4.1 and I'm planning to do all design modifications on the local.xml of my new template.
My doubt is if it is possible to change the layout structure only using the local.xml. I mean without changing the phtml files.
A simple example of what I would like to be able is: I want to put the catalog search in another part of my html and not inside the , as it is today. So I would like to remove it from top-bar and put it inside another div.
<div class="top-bar">
<div class="breadcrumbs">
<ul>
<li class="home">
<a href="http://www.domain.com/magento/" title="Ir para página principal">Principal</a>
<span>/ </span>
</li>
<li class="category9">
<strong>Product Category</strong>
</li>
</ul>
</div><!--breadcrumbs-->
<form id="search_mini_form" action="http://www.domain.com/magento/catalogsearch/result/" method="get">
<div class="form-search">
<label for="search">Pesquisar</label>
<input id="search" type="text" name="q" value="" class="input-text" />
<button type="submit" title="Ir" class="button"><span><span>Ir</span></span></button>
<div id="search_autocomplete" class="search-autocomplete"></div>
<script type="text/javascript">
//<![CDATA[
var searchForm = new Varien.searchForm('search_mini_form', 'search', 'Procurar em toda a loja...');
searchForm.initAutocomplete('http://www.domain.com/magento/catalogsearch/ajax/suggest/', 'search_autocomplete');
//]]>
</script>
</div>
</form>
</div> <!--top bar-->
How do I accomplish this? Is it possible to use only local.xml?
Thanks in advance and best regards