2013-07-17 60 views
1

我目前正在創建一個drupal 7模塊。在Drupal 7中更改表單字段樣式

我有一個文本框:

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

而且我希望把圖像在它前面,並對準他們兩個在我的容器的權利。我不知道我該怎麼做?

感謝您的幫助

回答

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();'), 
);