Page 1 of 1

First Table orange color, the rest are blue

Posted: 2018-04-23 22:37
by mgoetze
Hi All,
I am using the built-in bootstrap theme. For some reason the first table button is orange and all the rest are blue. I can't seem to find the setting to make them all the same color. I'm sure it's right in front of my eyes, but for some reason I dont see it. any help is greatly appreciated.

Mark

Re: First Table orange color, the rest are blue

Posted: 2018-04-24 02:08
by baudwalker
Hi Mark,

this can be changed in the home.php file

at the top of the file you will see the following

********
$block_classes = array(
'first' => array(
'grid_column' => 'col-sm-6 col-md-4 col-lg-3',
'panel' => 'panel-warning',
'link' => 'btn-warning'
),
'other' => array(
'grid_column' => 'col-sm-6 col-md-4 col-lg-3',
'panel' => 'panel-info',
'link' => 'btn-info'
)
);
***********

change the 'first' => array to match the 'other'=> array

Or change it to any Bootstrap button type you like

Barry

Re: First Table orange color, the rest are blue

Posted: 2018-04-24 03:13
by mgoetze
perfect! Thank you Barry