Ecological Land Co-operative

The Ecological Land Cooperative has been set up to buy land that has been, or is at risk of being, intensively managed and lease it to people that have the skills to manage it ecologically and would not otherwise be able to afford do so. This site was designed by Ultimate Holding Company and implemented and hosted by Gentlehost in Drupal.

As usual the theme was based on Zen. We did a few hacks to make the search bar look nicer. Firstly, we removed the submit button on the search form.

<?php
/* This removes the submit button from the theme search bar <em>/
/</em> Add to template.php in your theme's directory */
function YOURTHEME_search_theme_form($form) {
  
$form['submit'] = NULL;
  
$form['search_theme_form']['#title'] = 'Search';
   return
drupal_render($form);
}
?>

We then used the Overlabel JQuery library to make the "Search" text appear over the box itself.