Center Kartik Headers GridView yii2

-6

Good evening, how could the column headings of a gridview made with the kartik widget be centered?

    
asked by Javier Aguilar 17.08.2018 в 23:21
source

1 answer

2

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;',
  ],
],
    
answered by 19.08.2018 / 23:12
source