版本drupal5.7和garland主題,在將輸入form的textfield進行對齊排列時,碰到更改不能反應到input form顯示, 但是同樣的更改放在bluemarine主題中可以將textfield 成功的整齊排列
我的更改如下
(1)
將下列內容放入 themes/garland/template.php
if ((arg(0) == 'node') && (arg(1) == 'add') && (arg(2) == 'daily')){
function phptemplate_node_form($form) {
return _phptemplate_callback('content_daily_edit', array('user' => $user, 'form' => $form));
}
}
themes/garland/content_daily_edit.tpl.php如下
(2)
<?php print drupal_render($form['field_advice']); ?>
<?php print drupal_render($form['group_1']); ?>
<?php print drupal_render($form['group_1']['field_zhiti']); ?>
<?php print drupal_render($form['group_1']['field_zhitichange']); ?>
(3)
下列内容加入 themes/garland/style.css
#jpj1a, #jpj1b, #jpj1c {
float: left;
}
#jpj10{
float:left;
}
希望能得到幫助,應該如何更改讓在garland主題下可以使 textfield對齊排列
Re: CCK input form 的客制化問題
你可以捷圖嗎?
因為看不太懂
看起來想把label跟input對齊?試試在content type設定中的display選項
--
from open mind to open source~