i have creted a form by gii CRUD application. but the form has very wide input fields i don't want that much wide input fields. how can i do that. Any suggestion are highly welcome.my form code is.
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'group_name')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'group_num')->textInput() ?>
<?= $form->field($model, 'num_member')->textInput() ?>
<?= $form->field($model, 'monthly_prm')->textInput() ?>
<?= $form->field($model, 'chit_sdate')->textInput(['placeholder'=> "dd-mm-yy"]) ?>
<?= $form->field($model, 'chit_cdate')->textInput(['placeholder'=> "dd-mm-yy"]) ?>
<div class="form-group">
<?= Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
</div>
<?php ActiveForm::end(); ?>
got my answer... :) just add these in when your active form begins add do changes accordingly