在Drupal 7中更改表单字段样式

时间:2013-07-17 14:03:40

标签: module drupal-7

我目前正在创建一个drupal 7模块。

我有一个文本字段:

$form['gestionvideos_videos']['input'] = array(
        '#type' => 'textfield',
        '#prefix' => '<div id="customSearch">',
        '#suffix' => '</div>',
        '#attributes' => array('onkeyup' => 'search();'),
      );

我想在它前面放一个图像,并将它们对齐在我的容器右侧。我不知道我怎么能这样做?

感谢您的帮助

1 个答案:

答案 0 :(得分:2)

$form['gestionvideos_videos']['input'] = array(
    '#type' => 'textfield',
    '#prefix' => '<img src="/image.jpg" align="left" width="20px" height="20px"/><div id="customSearch">',
    '#suffix' => '</div>',
    '#attributes' => array('onkeyup' => 'search();'),
  );