i know little about web design, but i know that every item on a web site should be included in a file.
for an instance: i want to move the search box which is on the right top in http://www.louboutin-very-prive.com/, and according to the firebug, I know it is in a div part, and i know the code is
Code:
<div class="form-search">
        <label for="search">Search:</label>
        <input type="text" class="input-text" value="" name="q" id="search" autocomplete="off">
        <button class="button" title="Search" type="submit"><span><!--Search--></span></button>
        <div class="search-autocomplete" id="search_autocomplete" style="display: none;"></div>
        <script type="text/javascript">
        //&lt;![CDATA[
            var searchForm = new Varien.searchForm('search_mini_form', 'search', 'Search entire store here...');
            searchForm.initAutocomplete('http://www.louboutin-very-prive.com/catalogsearch/ajax/suggest/', 'search_autocomplete');
        //]]&gt;
        </script>
    </div>
but how can i find which is the file that containing the information of that search bow? I think whether i want to delete or move it, i should change its code.