The site.
Installed a new theme, 'Disciple', and the new search box is dead.
It's a specific problem: you can hover your cursor over the box and click, but it never actually enters the box so that you can type out and search a string.
I've switched the box to the other column, same problem. I've copied code for other search boxes and created them in either column, same problem.
Not that it should matter because every box I've tried has the same problem, but here's the template:
<h2>Search</h2>
<form method="get" id="searchform" action="<?php bloginfo('home');?>" >
<input type="text" onfocus="if (this.value == 'Search this blog') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search this blog';}" value="Search this blog" name="s" id="s" ></form>
Anyone know what's the problem?