Good evening, how could the column headings of a gridview made with the kartik widget be centered?
Good evening, how could the column headings of a gridview made with the kartik widget be centered?
If you use Bootstrap you can center the header by adding the class text-center
or using CSS property text-align
with the value center
.
Try the following:
[
'attribute' => 'nombre',
'headerOptions' => [
'class' => 'text-center',
'style' => 'text-align: center;',
],
],