在修改模板样式的过程中碰到需要修改搜索框样式的情况(就是搜索按钮原本是“Search,我要把他改成图片背景”)
因为它不是模版定义的样式,找了很久,原来是在Search模块中用方法定义的,经过大神指点,
/** * Implements hook_form_FORM_ID_alter(). * * Override the search box to add our pretty graphic instead of the button. */ function ninesixtyrobots_form_search_block_form_alter(&$form, &$form_state) { $form['actions']['submit']['#type'] = 'image_button'; $form['actions']['submit']['#src'] = drupal_get_path('theme', 'ninesixtyrobots') . '/images/search.png'; $form['actions']['submit']['#attributes']['class'][] = 'btn'; }
通过覆写来修改
(“ninesixtyrobots” 为你的主题名)
还有官方的 修改search 的文档 https://www.drupal.org/node/154137
赞