This is what is in my searchform.php `<li id="search">
<label for="s"><h2>Search</h2></label>
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div>
<input type="text" name="s" id="s" size="15" />
<input type="submit" id ="submit" value="<?php _e('Search'); ?>" />
</div>
</form>
`
If I removed the <h2>Search</h2> the input box will have a yellowish backgorund. How do I not show the <h2>Search</h2> but the input box stays normal?