Getting Started
Find your way around Ergo with it's available theme & layout options and learn how to change to a custom theme, the menu position & size, allow or disallow skin or menu customization options from the browser etc.
Configuration options php/index.php
/* Allow skin customization from the browser * Values: true/false */ defined('SKIN_JS') || define('SKIN_JS', true); /* If set true, loads the custom skin files * Values: false/filename without .extension */ defined('SKIN_CUSTOM') || define('SKIN_CUSTOM', 'brown'); /* DO NOT EDIT UNLESS YOU KNOW WHAT YOU'RE DOING * To load a custom skin, edit SKIN_CUSTOM above * When browser skin customization is allowed, ignore SKIN_CUSTOM */ defined('SKIN') || define('SKIN', SKIN_JS ? false : SKIN_CUSTOM);