Hi
I'm looking to create a custom block page which has different backgrounds, and company logo. I've tried following SK83700 but this did not seem to work very well. The gateway is also R77.30
Here's what I did to update backgrounds after copying the .png files to the relevant directory on the gateway. I also found that the logo was not displayed as there seems to a permissions issue accessing the logo file (Note: sk114632 did not fix this)
Modify the /opt/CPUserCheckPortal/phpincs/view/css/UserAction.php file:
Use another image pointer (use *.png), or a specific background color that best fits the customer's needs in the following functions:
.usercheck_body_background_class
{
background: url('<?PHP echo $UTILS->getUrl("sliver_pattern.png", "img"); ?>') repeat scroll center center;
}
.usercheck_main_background_class
{
background: url('<?PHP echo $UTILS->getUrl("blue_background.png", "img"); ?>') repeat-y scroll center center;
}