I'm trying to convert the danger4k theme to work with Drupal 6. The search form in the top left hand corner adds the text "Search this site:". Is there a way to call the search form but not have the text?

Comments

alan d.’s picture

From the zen theme, this CSS should hide the field

  #edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */
  {
    display: none;
  }

or you could look at custom theming of "search_theme_form", but the CSS is easiest!


Alan Davison
www.caignwebs.com.au

Alan Davison