Page 1 of 1

Changing colour palette

Posted: 2020-04-12 20:37
by kanklovitch
Hi fantastic Super Heros
Is there a way to change the button colours to what ever I want. I will be doing an application and the standard colours don't seem appropriate.

Thanks very much

Re: Changing colour palette

Posted: 2020-04-13 08:56
by pbottcher

Re: Changing colour palette

Posted: 2020-04-13 12:34
by kanklovitch
Thanks very much, I will see what I can learn.

Re: Changing colour palette

Posted: 2020-04-14 04:06
by baudwalker
In the app root you will find "home.php" find

Code: Select all

Classes of first and other blocks
		---------------------------------
		For possible classes, refer to the Bootstrap grid columns, panels and buttons documentation:
			Grid columns: http://getbootstrap.com/css/#grid
			Panels: http://getbootstrap.com/components/#panels
			Buttons: http://getbootstrap.com/css/#buttons
	*/
	$block_classes = array(
		'first' => array(
			'grid_column' => 'col-md-6 col-lg-4',
			'panel' => 'panel-warning',
			'link' => 'btn-warning'
		),
		'other' => array(
			'grid_column' => 'col-md-6 col-lg-4',
			'panel' => 'panel-info',
			'link' => 'btn-info'
		)
	);
this shows you how to change the first and all the others. I have not tried to change individual panels as yet.