Default Horde Theme
Dustin | Programming & Scripting | October 4th 2008
If you would like have a different default theme other than the ‘Blue and White’ theme that ships with Horde 3 you can easily do so by editing the prefs.php located in the Horde conf-directory (on most my servers it is located at /etc/psa-horde/horde/). About 2/3rds of the way down in the file you will find:
// UI theme
$_prefs['theme'] = array(
'value' => 'bluewhite',
'locked' => false,
'shared' => true,
'type' => 'select',
'desc' => _("Select your color scheme.")
);
Change ‘bluewhite’ to the directory name of the theme you would like to use as the default. A great theme I use that does not ship with Horde is WPS Sober found here (read the README.txt in the download for installation directions). If you go with the WPS Sober you would change ‘bluewhite’ to ‘wps_sober’ after installing the theme.
Enjoy!