|
A guide to the basic Catalyst customisation options that can be configured in the template "index.php" file with a description of each of the available options and how they affect the presentation of the template.
Catalyst features several built in configuration options that have been designed to be easily changed with a single control. You can take advantage of these customisation options by making changes in the Catalyst "index.php" file. Here is a breakdown of the available options:
$default_theme = "theme1"; // [theme1... theme6]
$body_style = "style1"; // [style1... style6]
$header_style = "header1"; // [header1... header10]
$enable_ie6warn = "false"; // true | false
$font_family = "catalyst"; // catalyst | geneva | optima | helvetica
trebuchet | lucida | georgia | palatino
$template_width = "958"; // width in px
$leftcolumn_width = "275"; // width in px
$rightcolumn_width = "275"; // width in px
$splitmenu_col = "rightcol"; // leftcol | rightcol
$menu_name = "mainmenu"; // mainmenu by default, can be any
Joomla menu name
$menu_type = "moomenu"; // moomenu | suckerfish | splitmenu | module
$default_font "default"; // smaller | default | larger
$show_pathway = "true"; // true | false
$show_moduleslider = "false"; // true | false
// module slider configuration
$max_mods_per_row = 3; // maximum number of modules per row
$modules_list = array(array("title"=>"Tab 1", "module"=>"user8"),
array("title"=>"Tab 2", "module"=>"user9"),
array("title"=>"Tab 3", "module"=>"user10"),
array("title"=>"Tab 4", "module"=>"user11"),
array("title"=>"Tab 5", "module"=>"user12"));
Catalyst has 6 pre-made theme presets that can be easily selected from the option shown below. Simply change the settings between the two " " tags to your style of choice.
$default_theme = "theme1";
// [theme1...theme6]
Catalyst has 6 pre-made body color styles that can be easily selected from the option shown below. Simply change the settings between the two " " tags to your style of choice.
$body_style = "style1";
// [style1...style6]
Catalyst has 10 pre-made header textures that can be easily selected from the option shown below. Simply change the settings between the two " " tags to your style of choice.
$header_style = "header1";
// [header1...header10]
Warn your visitors using Internet Explorer 6 to upgrade to a more secure version with this toggle.
$enable_ie6warn = "true";
// true | false
You have the ability to select the width of the template. The setting below is what you edit to either reduce or increase templates width.
$template_width = "958";
// width in px
The following parameter controls which Joomla! menu is loaded for the horizontal navigation bar.
$menu_name ="mainmenu";
// mainmenu by default
You can either, select moomenu, suckerfish, splitmenu, or as a separate module position.
$menu_type = "moomenu";
// moomenu | suckerfish
splitmenu | module
The module configuration variable below controls how many consecutive modules you can have for a position.
$max_mods_per_row = 3;
// max number of modules per row (if
wraps, adjust height)
You can choose which font you would like to use for your titles.
$font_family= "geneva";
// geneva|optima|helvetica|
trebuchet|lucida|georgia|palatino
With the following setting, you can choose the width of the left column.
$lefctolumn_width= "275";
// width in px
With the following setting, you can choose the width of the right column.
$rightcolumn_width= "275";
// width in px
With this setting, choose to have the sidebar placed on the left or right of the mainbody. The name of the module positions changes to reflect left or right.
$splitmenu_col = "rightcol";
// leftcol | rightcol
Based on your own personal preference, you can set the default font size with this setting below.
$default_font ="default";
// smaller | default | larger
This setting controls whether the pathway appears on your site.
$show_pathway= "false";
// true | false
There is now a convenient toggle to show the tabbed modules or not.
$show_moduleslider = "true";
// true | false
Module List
With the setting illustrated below, you can control the aspects of the integrated rokslide feature to a great extent. You can control the tab title and also the module position which appears in each of the tabs.
In the code snippet, we have 5 lines, each line controls a single tab. Each line is segregated into 2 distinct parts. These are "title"=>"Tab Title", which controls the Tab Title. The second part is "module"=>"Module Position"),
$modules_list = array(array("title"=>"Group 1 Title", "module"=>"user8"),
array("title"=>"Group 2 Title", "module"=>"user9"),
array("title"=>"Group 3 Title", "module"=>"user10"),
array("title"=>"Group 4 Title", "module"=>"user11"),
array("title"=>"Group 5 Title", "module"=>"user12"));
|