change the color of a page in HOOKS

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
pasbonte
Veteran Member
Posts: 178
Joined: 2013-02-06 09:49

change the color of a page in HOOKS

Post by pasbonte » 2022-03-03 08:59

Hello

Is it possible to change the color of a page in HOOKS?

pbottcher
AppGini Super Hero
AppGini Super Hero
Posts: 1709
Joined: 2018-04-01 10:12

Re: change the color of a page in HOOKS

Post by pbottcher » 2022-03-03 11:21

Hi,

yes, you can use the _header and set your style according to your need. Just go the part of the page (TV,DV, ...) and add the style.
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.

pasbonte
Veteran Member
Posts: 178
Joined: 2013-02-06 09:49

Re: change the color of a page in HOOKS

Post by pasbonte » 2022-03-03 12:48

Et oui merci !


Code: Select all

function GES_INFORMATIQUE_header($contentType, $memberInfo, &$args) {
		$header='';
echo "<body style='background-color:pink'>";


Post Reply