how to delete search this site text above search form
held69 - May 9, 2008 - 21:17
I have my search form enabled.
The block title of the search form however is disabled, or to say more precisely i put
in the block title, so the search form has no title.
But still just above the search block there is text saying "search this site".
How can i get rid of this text?

You can hide it with
You can hide it with CSS.
Here's some CSS you can use:
#block-search-0 label {display: none;
}
Alternatively you could override the HTML and 'physically' remove the label, here's how.
--
How to override HTML in Drupal 6
css
i tried the css part and it worked right away, thanks....