remove search

Is there a way to remove the search window from all pages. The small site i'll be building isn't substantial enough to warrant searches (yet) so it is just clutter above the header.

Easiest way to do this is to override the header.php file for your theme to look for something like this:

<div id="search-container">
    <h2>Search</h2>
    <?php echo search_form(array('show_advanced'=>TRUE)); ?>
</div>

and remove it.

This guide to overriding theme files might help.

That said, even with a smallish site, I've found that users have been well-trained by Google (for good or bad), to default to using search when there's the tiniest question about how to find something.