Advertisement
evagabond

Change Search Box Size, Drupal

Oct 2nd, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.   if ($form_id == 'search_form') {
  3.      $form['basic']['inline']['keys'] = array(
  4.        '#type' => 'textfield',
  5.        '#title' => '',
  6.        '#default_value' => $keys,
  7.        '#size' => 100, // Or whatever size you want
  8.        '#maxlength' => 255,
  9.     );
  10.   }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement