文本框的长度在后台制定的css中设置
例如:
要修改电话的文本框长度
<div class="sf_admin_form_row sf_admin_text sf_admin_form_field_tel"> <input type="text" name="shop[tel]" id="shop_tel" /> <div>
在css中写
.sf_admin_form_field_tel #shop_tel {
width:60px;
}
all about symfony
文本框的长度在后台制定的css中设置
例如:
要修改电话的文本框长度
<div class="sf_admin_form_row sf_admin_text sf_admin_form_field_tel"> <input type="text" name="shop[tel]" id="shop_tel" /> <div>
在css中写
.sf_admin_form_field_tel #shop_tel {
width:60px;
}
由 WordPress 所驱动