Styling button

Hello,

is there a way to styling this button:


<?= $form->field($model, 'file')->fileInput() ?>

looking like:


<?= Html::submitButton(Yii::t('app', 'Send'), ['class' => 'btn btn-primary']) ?>

?

First parameter are the html options. So your code should just be:


<?= $form->field($model, 'file')->fileInput(['class' => 'btn btn-primary']) ?>

Thank you, but is not what I want, I must investigate more. :slight_smile: