Hogy rakok gombot a textfield mellé?

pentike képe

Helló!

Hogy tudom a submit gombot a textfield mellé rakni, úgy mint a search.module blokkja?

Ez a kód:

$form['placeid'] = array('#type' => 'textfield', '#title' => t('Hunting Place ID'), '#size' => 5, '#maxlength' => 5);
$form['submit'] = array('#type' => 'submit', '#value' => t('Begin'));

$block['subject'] = t('Hunting');
$block['content'] = drupal_get_form('huntingblock', $form);
return $block;

de ez alá rakja, ami rendben is lenne, csak ezt meg a search.module-ból szedtem:

$form[$form_id .'_keys'] = array(
'#type' => 'textfield',
'#size' => 15,
'#default_value' => '',
'#attributes' => array('title' => t('Enter the terms you wish to search for.')),
);
if ($form_id == 'search_theme_form') {
$form['#theme']['theme_search_theme_form'] = array();
}
$form['submit'] = array('#type' => 'submit', '#value' => t('Search'));

return drupal_get_form($form_id, $form, 'search_box_form');
}

A kettő ránézésre tejlesen ugyanaz. Hol a turpisság?

pentike

Fórum: 
tfejos képe

Csak egy amatőr tipp:
nem CSS-től függ a megjelnése?
--
TMS
http://fejos.hu

0
0