Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: Theme basics.

Theme basics: Difference between revisions

From MoodleDocs
m (fixed a typo)
 
(43 intermediate revisions by 19 users not shown)
Line 1: Line 1:
== Introduction ==
{{Themes}}
This is written for 1.9 and earlier versions of Moodle.  There will be a major change in Themes for Moodle 2.0.


With the 1.5 themes we can build great Moodle learning environments - our learners will appreciate it. I'm looking forward to see those many good useable and different and attractive looking Moodle learning sites. I know learning with fun is better learning ;-)
== What is inside a theme folder? ==


--[[User:UrsHunkler|UrsHunkler]] 12:36, 1 Aug 2005 (Westeuropäische Sommerzeit)
Each theme folder contains the following:
 
== What is Inside the Themes Folder? ==
 
In the themes folder you see the following files


  pix/
  pix/
Line 20: Line 17:
  styles_moz.css
  styles_moz.css


==== The pix folder ====
This contains all pictures and icons used in the theme. Themes come with pictures for the tabs and eventually for the gradients.


=== The pix folder ===
==== The favicon.ico ====
with all pictures and icons used in the theme. The 1.5 themes come with pictures for the tabs and eventually for the gradients. (All Moodle 1.5 themes use the pix folder.)
This is the small icon shown in the browsers in front of the URL.
*The standard Moodle favicon.ico looks like: [[Image:Favicon.gif]].
*The standard Cornflower theme favicon.ico looks like: [[Image:FaviconBlue.gif]]


=== The favicon.ico ===
==== header.html and footer.html pages====
is the small icon shown in the browsers in front of the URL. (like 1.4)
These pages contain the logo, the login, the jumpto menu, the [[Navigation bar|navigation bar]], the moodle logo etc. Within these files you can give Moodle your individual look at the top and the bottom of all pages.


=== header.html and footer.html===
All images linked from header.html and footer.html should use $CFG->httpswwwroot instead of the usual $CFG->wwwroot. The reason is proper operation of login page (and other https protected pages) when loginhttps is enabled.
contain your logo, the login, the jumpto menu, the breadcrumb navigation the moodle logo etc. Within these files you can give Moodle your individual look for the top and the bottom of all pages. (like 1.4)


These are the main variables available for use in these files:
These are the main variables available for use in these files:


$CFG  (object with all system variables)
$CFG  (object with all system variables)
$THEME (object with all current theme variables from config.php)
$THEME (object with all current theme variables from config.php)
$course (current course object)
$COURSE (current course object)
$meta (all the meta tags, including stylesheets)
$meta (all the meta tags, including stylesheets)
$home (boolean)
$home (boolean)
$title (page title)
$title (page title)
$heading (heading for the page)
$heading (heading for the page)
$navigation (the raw navigation "breadcrumbs")
$navigation (the raw navigation, not the "navigation bar")
$navmenulist  (xhtml )
$navmenulist  (xhtml)
$menu (the popup menu or button)
$menu (the popup menu or button)
 
Header only:
 
$direction (ltr or rtl)
$bodytags (tags that need to be added to the body)


header only:
Footer only:


$direction (ltr or rtl)
$homelink (link back to "home" - current course page or site page)
$bodytags (tags that need to be added to the body)
$loggedinas (string with name of user as link)
$performanceinfo (string with performance information)


footer only:
Finally, the header and footer can contain any Moodle PHP code, so all sorts of other data can be extracted from the database or environment as necessary.


$homelink (link back to "home" - current course page or site page)
==== styles.php ====
$loggedinas (string with name of user as link)
The styles.php file is called from header.html and builds the bridge to the CSS files. You don't need to edit anything much in this file, use [[Theme config file|config.php]] instead.  The one variable you may want to change during development, however is $lifetime.  Set it to a very small value (like 1 second) to prevent the theme from caching too long when you are making changes.  When you put theme on your production site and will not be changing themes, you may want to change it to several days (like $lifetime = 3*24*60*60) to improve load times and bandwidth use.
$performanceinfo (string with performance information)


Every theme should contain a copy of this script.  It lets Moodle set up variables and so on before Moodle includes the raw CSS files. The output of this script should be a completely standard CSS file.


Finally, the header and footer can contain any Moodle PHP code, so all sorts of other data can be extracted from the database or environment as necessary.
==== config.php ====
In the [[Theme config file]] where the theme goes to find things. You can build your theme which does specific things but which will default back onto the standard or onto any parent theme when Moodle can not find the variable in your theme. A custom theme can include or exclude several CSS files.


=== styles.php ===
For example, the standard Moodle Chameleon theme config.php file directs Moodle to it's moodle/theme/chameleon/pix folders to get images. The standard Moodle Formal white theme uses the moodle/pix folders to get most of it's images and this is determined by its config.php file.
has the same name as in 1.4 but takes another task. It is called from header.html and builds the bridge to the CSS files. You don't need to edit anything. (changed task for 1.5.)


=== config.php ===
==== The stylesheets ====
has also the same name as in 1.4 and another task in 1.5. In this file you configure how the CSS files work together. You can build your theme onto the standard or onto any parent theme, can include or exclude several CSS files. About the details you can read in the coming article "Cascading CSS". (changed task for 1.5.)
The use of Cascading Style Sheets [[CSS]] goal is to [[#Separating Content from Presentation|separate content from presentation]] for better flexibility, accessibility and for more flexible page design. Changing an element's definition, will change it throught the site. The CSS files are separated by general function into three files:


=== The Stylesheets ===
[[ CSS styles_layout.css|styles_layout.css]]
With Moodle 1.5 started the work to clearly separate page content from page presentation [[#Separating Content from Presentation|(see "Separating Content from Presentation")]] for better flexibility, accessibility and for more flexible page design. To give you the chance to work relatively easy for few changes of color and fonts the CSS is separated into three files:


styles_layout.css
[[ CSS styles_fonts.css|styles_fonts.css]]
styles_fonts.css
styles_color.css


styles_moz.css  
[[ CSS styles_color.css|styles_color.css]]


'''styles_moz.css''' contains Firefox and Mozilla specific formatting, especially the rounded corners.
In addition, [[CSS styles_moz.css]] contains Firefox and Mozilla specific formatting, especially the rounded corners.


=== Additional Files in the Themes Folder ===
==== Additional files ====
Last but not least theme designers can provide information about the theme and a picture preview. The picture preview is shown as preview on the theme configuration page, the info in the README file after the theme has been selected.
Lastly, theme designers may provide information about the theme, plus a picture preview. The picture preview is shown on the themes page, the info in the README file after the theme has been selected.


  README.html
  README.html
  screenshot.jpg
  screenshot.jpg


=== An Example Page ===
== Separating content from presentation ==
With [http://www.unodo.de/discussion/moodle_themes/inside/style_example_a.html this example Moodle page] you can try how the different CSS files form the look of the page. On the top right you see four links on a green bar. With the buttons you can switch the belonging stylesheets off (font-style italic) and on (font-style normal). When you switch all stylesheets off you see the content level of Moodle.


----
=== Separating Content from Presentation ===
The content layer of the page is represented via XHTML, the presentation layer via CSS. To connect the belonging information in both layers XHTML tags and named hooks within page are used. You need quite a lot of them to style complex web applications like Moodle.
The content layer of the page is represented via XHTML, the presentation layer via CSS. To connect the belonging information in both layers XHTML tags and named hooks within page are used. You need quite a lot of them to style complex web applications like Moodle.
----


== Cascading CSS ==
== Cascading CSS ==


Moodle Themes use style sheets to describe the Moodle "look" by controlling the layout, fonts and colors. These are constructed by a PHP script called "styles.php" in each theme directory, and controlled by a file called "config.php" in the same place.
Moodle themes use style sheets to describe the Moodle "look" by controlling the layout, fonts and colors. These are constructed by a PHP script called "styles.php" in each theme directory, and controlled by a file called "config.php" in the same place.


Moodle has a "standard" theme which is very plain and provides a basic layout for other themes to build on. Each theme may also have a "parent" theme, which will be included before the current theme.
Moodle has a "standard" theme which is very plain and provides a basic layout for other themes to build on. When a design element is not define in another theme, the default is the definition found in the standard theme. Each theme may also have a "parent" theme, which will be included before the current theme.


So, depending on your settings, you may have up to three stylesheets for a theme:
So, depending on your settings, you may have up to three stylesheets for a theme:


  1. "standard" theme - theme/standard/styles.php
#"standard" theme - theme/standard/styles.php
  2. "parent" theme - theme/parenttheme/styles.php
#"parent" theme - theme/parenttheme/styles.php
  3. "main" theme - theme/yourtheme/styles.php
#"main" theme - theme/yourtheme/styles.php


Due to the cascading character of CSS the definitions in later files can overwrite the definitions in the earlier CSS files. Moodle makes extensive use of the cascading character of CSS and gives the theme designer many opportunities. They range from easy development of themes based on the existing ones with few changes up to the design of a completely individual Moodle appearance with new CSS files.
Due to the cascading character of CSS the definitions in later files can overwrite the definitions in the earlier CSS files. Moodle makes extensive use of the cascading character of CSS and gives the theme designer many opportunities. They range from easy development of themes based on the existing ones with few changes up to the design of a completely individual Moodle appearance with new CSS files.
Line 104: Line 103:
Theme designers can define and add any CSS stylesheets and name them any way as needed for this theme.
Theme designers can define and add any CSS stylesheets and name them any way as needed for this theme.


 
== The standard theme ==
=== The Standard Theme ===


<div style="margin:1.2em 0"><div style="float:left">
<div style="margin:1.2em 0"><div style="float:left">
Line 115: Line 113:
</div>
</div>


=== Small Changes ===
== Small changes ==


If you just want to make small changes to a theme like using different colors or adding a logo then your new theme will include the "standard" theme and you define a few extra CSS styles in a new CSS file.
If you just want to make small changes to a theme like using different colors or adding a logo then your new theme will include the "standard" theme and you define a few extra CSS styles in a new CSS file.
Line 131: Line 129:
</div>
</div>


=== Mixed CSS - Standard Layout plus Own Fonts and Colors ===
== Mixed CSS - standard layout plus your own fonts and colours ==


The theme "formal_white" mixes the page layout from the theme "standard" with it's own layout, fonts and colors. This way all layout changes in the standard Moodle layout are kept. This is done by setting <code>$THEME->sheets = array('fw_layout','fw_color','fw_fonts');</code> and <code>$THEME->standardsheets = array('styles_layout');</code> in the config file.
The theme "formal_white" mixes the page layout from the theme "standard" with its own layout, fonts and colours. This way all layout changes in the standard Moodle layout are kept. This is done by setting <code>$THEME->sheets = array('fw_layout','fw_color','fw_fonts');</code> and <code>$THEME->standardsheets = array('styles_layout');</code> in the config file.


<div style="margin:1.2em 0"><div style="float:left">
<div style="margin:1.2em 0"><div style="float:left">
Line 143: Line 141:
</div>
</div>


=== A Theme Using a Parent Theme (faked) ===
== A theme using a parent theme (faked) ==


An advanced feature is to set any existing theme as the "parent" theme and offer variant themes to this. One possible use can be to design one "parent" theme with all CSS definitions. Then offer "child" themes with color variants to be chosen by the users according to their color preferences. These "child" themes need only one CSS file holding the different color definitions.  
An advanced feature is to set any existing theme as the "parent" theme and offer variant themes to this. Two possible uses can be to design one "parent" theme with all CSS definitions. Then offer "child" themes with color variants to be chosen by the users according to their color preferences. These "child" themes need only one CSS file holding the different color definitions. Or create "child" themes which only vary in the logo/banner placed in the "header.html". These "child" themes do not need their own CSS files.


The configuration for the "child" themes could look like <code>$THEME->sheets = array('my_layout');</code>, <code>$THEME->parent = 'formal_white'</code>; and <code>$THEME->parentsheets = array('fw_layout','fw_color','fw_fonts');</code>
The configuration for the "child" themes could look like <code>$THEME->sheets = array('my_layout');</code>, <code>$THEME->parent = 'formal_white'</code>; and <code>$THEME->parentsheets = array('fw_layout','fw_color','fw_fonts');</code>
Line 157: Line 155:
</div>
</div>


=== A Theme Without Standard Dependencies (faked) ===
== A theme without standard dependencies (faked) ==


This theme would use its own CSS. The settings <code>$THEME->sheets = array('styles_layout', 'styles_fonts', 'styles_color');</code> and <code>$THEME->standardsheets = false;</code> deactivate all other Moodle CSS and make a completely independent theme. All changes in the standard Moodle theme do not change this theme at all.
This theme would use its own CSS. The settings <code>$THEME->sheets = array('styles_layout', 'styles_fonts', 'styles_color');</code> and <code>$THEME->standardsheets = false;</code> deactivate all other Moodle CSS and make a completely independent theme. All changes in the standard Moodle theme do not change this theme at all.
Line 169: Line 167:
</div>
</div>


=== Some more Basic CSS Files ===
== Some more basic CSS files ==


In addition to this theme CSS files Moodle features a basic CSS file for every module, block and for every language. Developers can provide basic CSS properties for their modules and blocks to get the page or block layout right, if they need formatting for special functionality. The look and feel of Moodle is not changed by these layout basics.
In addition to theme CSS files, Moodle features a basic CSS file for every module, block and for every language. Developers can provide basic CSS properties for their modules and blocks to get the page or block layout right, if they need formatting for special functionality. The look and feel of Moodle is not changed by these layout basics.


These files are only loaded when the "standard" CSS is activated. They are loaded first before all theme CSS files.
These files are only loaded when the "standard" CSS is activated. They are loaded first before all theme CSS files.
Line 183: Line 181:
</div>
</div>


=== Last but not least ===
== Additional resources ==
*[[CSS]]
*[http://www.unodo.de/discussion/moodle_themes/inside/style_example_a.html Moodle demo course page] - this enables you see how the different CSS files form the look of the page. On the top right you see four links on a green bar. With the buttons you can switch stylesheets off (font-style italic) and on (font-style normal). When you switch all stylesheets off you see the content level of Moodle.
*[http://moodle.org/mod/data/view.php?id=6552 Database of all available Moodle Themes] (in preparation, please contribute)
*[http://moodle.unodo.de/ Moodle Theme Gallery]
 
* [http://www.csszengarden.com Zen Garden], also available [http://www.mezzoblue.com/zengarden/translations/ in different languages]
 
* [[Themes FAQ]]
* [[CSS FAQ]]


Very good information about the Moodle CSS you can get from the final stylesheets that reach your browser. Moodle integrates some helpful documentation. For example you can read the CSS with the Firefox "Web Developer" extension.
== Tools ==
*[http://www.moddular.org/log/css-inspector/ CSS Inspector]
*[http://chrispederick.com/work/webdeveloper/ Firefox Web Developer Extension] - see also [[Web developer extension]].
*[http://www.getfirebug.com/ Firebug Extension] - see also [[Development:Firebug]].


== Find the Styles, no Need to Search ==
[[Category:Themes]]


one of the next sections ;-)
[[es:Conceptos básicos temas]]
[[fr:Bases sur les thèmes]]
[[ja:テーマの基本]]
[[de:Design-Grundlagen]]

Latest revision as of 18:32, 6 June 2011


This is written for 1.9 and earlier versions of Moodle. There will be a major change in Themes for Moodle 2.0.

What is inside a theme folder?

Each theme folder contains the following:

pix/
config.php
favicon.ico
footer.html
header.html
styles.php
styles_color.css
styles_fonts.css
styles_layout.css
styles_moz.css

The pix folder

This contains all pictures and icons used in the theme. Themes come with pictures for the tabs and eventually for the gradients.

The favicon.ico

This is the small icon shown in the browsers in front of the URL.

  • The standard Moodle favicon.ico looks like: Favicon.gif.
  • The standard Cornflower theme favicon.ico looks like: FaviconBlue.gif

header.html and footer.html pages

These pages contain the logo, the login, the jumpto menu, the navigation bar, the moodle logo etc. Within these files you can give Moodle your individual look at the top and the bottom of all pages.

All images linked from header.html and footer.html should use $CFG->httpswwwroot instead of the usual $CFG->wwwroot. The reason is proper operation of login page (and other https protected pages) when loginhttps is enabled.

These are the main variables available for use in these files:

$CFG  (object with all system variables)
$THEME (object with all current theme variables from config.php)
$COURSE (current course object)
$meta (all the meta tags, including stylesheets)
$home (boolean)
$title (page title)
$heading (heading for the page)
$navigation (the raw navigation, not the "navigation bar")
$navmenulist  (xhtml)
$menu (the popup menu or button)

Header only:

$direction (ltr or rtl)
$bodytags (tags that need to be added to the body)

Footer only:

$homelink (link back to "home" - current course page or site page)
$loggedinas (string with name of user as link)
$performanceinfo (string with performance information)

Finally, the header and footer can contain any Moodle PHP code, so all sorts of other data can be extracted from the database or environment as necessary.

styles.php

The styles.php file is called from header.html and builds the bridge to the CSS files. You don't need to edit anything much in this file, use config.php instead. The one variable you may want to change during development, however is $lifetime. Set it to a very small value (like 1 second) to prevent the theme from caching too long when you are making changes. When you put theme on your production site and will not be changing themes, you may want to change it to several days (like $lifetime = 3*24*60*60) to improve load times and bandwidth use.

Every theme should contain a copy of this script. It lets Moodle set up variables and so on before Moodle includes the raw CSS files. The output of this script should be a completely standard CSS file.

config.php

In the Theme config file where the theme goes to find things. You can build your theme which does specific things but which will default back onto the standard or onto any parent theme when Moodle can not find the variable in your theme. A custom theme can include or exclude several CSS files.

For example, the standard Moodle Chameleon theme config.php file directs Moodle to it's moodle/theme/chameleon/pix folders to get images. The standard Moodle Formal white theme uses the moodle/pix folders to get most of it's images and this is determined by its config.php file.

The stylesheets

The use of Cascading Style Sheets CSS goal is to separate content from presentation for better flexibility, accessibility and for more flexible page design. Changing an element's definition, will change it throught the site. The CSS files are separated by general function into three files:

styles_layout.css

styles_fonts.css

styles_color.css

In addition, CSS styles_moz.css contains Firefox and Mozilla specific formatting, especially the rounded corners.

Additional files

Lastly, theme designers may provide information about the theme, plus a picture preview. The picture preview is shown on the themes page, the info in the README file after the theme has been selected.

README.html
screenshot.jpg

Separating content from presentation

The content layer of the page is represented via XHTML, the presentation layer via CSS. To connect the belonging information in both layers XHTML tags and named hooks within page are used. You need quite a lot of them to style complex web applications like Moodle.

Cascading CSS

Moodle themes use style sheets to describe the Moodle "look" by controlling the layout, fonts and colors. These are constructed by a PHP script called "styles.php" in each theme directory, and controlled by a file called "config.php" in the same place.

Moodle has a "standard" theme which is very plain and provides a basic layout for other themes to build on. When a design element is not define in another theme, the default is the definition found in the standard theme. Each theme may also have a "parent" theme, which will be included before the current theme.

So, depending on your settings, you may have up to three stylesheets for a theme:

  1. "standard" theme - theme/standard/styles.php
  2. "parent" theme - theme/parenttheme/styles.php
  3. "main" theme - theme/yourtheme/styles.php

Due to the cascading character of CSS the definitions in later files can overwrite the definitions in the earlier CSS files. Moodle makes extensive use of the cascading character of CSS and gives the theme designer many opportunities. They range from easy development of themes based on the existing ones with few changes up to the design of a completely individual Moodle appearance with new CSS files.

Theme designers can define and add any CSS stylesheets and name them any way as needed for this theme.

The standard theme

Theme Standard

Figure 1: The theme "standard" with the CSS files "styles_layout.css", "styles_fonts.css", "styles_color.css" and "styles_moz.css".


Small changes

If you just want to make small changes to a theme like using different colors or adding a logo then your new theme will include the "standard" theme and you define a few extra CSS styles in a new CSS file.

As an example, see the "standardwhite" theme.

It uses the file "config.php" to set the appropriate options. The first entry $THEME->sheets = array('gradients'); defines the CSS file "gradients.css" as the file with additional CSS definitions. It also specifies $THEME->standardsheets = true; which says to include all the styles from the standard theme too.

Instead of basing the theme on "standard", you could base it on another theme by specifying $THEME->parent = 'cooltheme';

Theme Standardwhite
Figure 2: The theme "standardwhite" with all CSS files from the theme "standard" plus "gradients.css" from the selected theme.

Mixed CSS - standard layout plus your own fonts and colours

The theme "formal_white" mixes the page layout from the theme "standard" with its own layout, fonts and colours. This way all layout changes in the standard Moodle layout are kept. This is done by setting $THEME->sheets = array('fw_layout','fw_color','fw_fonts'); and $THEME->standardsheets = array('styles_layout'); in the config file.

Theme "formal_white"

Figure 3: The theme "formal_white" with the CSS file "styles_layout.css" from the theme "standard" and the individual files "fw_layout.css", "fw_fonts.css", "fw_color.css".


A theme using a parent theme (faked)

An advanced feature is to set any existing theme as the "parent" theme and offer variant themes to this. Two possible uses can be to design one "parent" theme with all CSS definitions. Then offer "child" themes with color variants to be chosen by the users according to their color preferences. These "child" themes need only one CSS file holding the different color definitions. Or create "child" themes which only vary in the logo/banner placed in the "header.html". These "child" themes do not need their own CSS files.

The configuration for the "child" themes could look like $THEME->sheets = array('my_layout');, $THEME->parent = 'formal_white'; and $THEME->parentsheets = array('fw_layout','fw_color','fw_fonts');

Theme Formalemwhite plus, faked

Figure 4: The faked theme "formal_white_plus" with the additional CSS file "my_layout.css".


A theme without standard dependencies (faked)

This theme would use its own CSS. The settings $THEME->sheets = array('styles_layout', 'styles_fonts', 'styles_color'); and $THEME->standardsheets = false; deactivate all other Moodle CSS and make a completely independent theme. All changes in the standard Moodle theme do not change this theme at all.

Theme Independent (faked)

Figure 5: The theme with it's own CSS files "styles_layout.css", "styles_fonts.css" and "styles_color.css".


Some more basic CSS files

In addition to theme CSS files, Moodle features a basic CSS file for every module, block and for every language. Developers can provide basic CSS properties for their modules and blocks to get the page or block layout right, if they need formatting for special functionality. The look and feel of Moodle is not changed by these layout basics.

These files are only loaded when the "standard" CSS is activated. They are loaded first before all theme CSS files.

Moodle CSS Loading Order

Figure 6: The CSS file loading order of all Moodle CSS and theme CSS files.


Additional resources

Tools