Note: You are currently viewing documentation for Moodle 2.0. Up-to-date documentation for the latest stable version is available here: Custom Corners.

Custom Corners: Difference between revisions

From MoodleDocs
No edit summary
 
(Replaced content with "{{Moved_to_dev_docs}}")
 
Line 1: Line 1:
Custom corners is new theme for moodle 1.9 by Urs Hunkler of [http://moodle.unodo.de Unodo]
{{Moved_to_dev_docs}}
 
==Making a theme based on custom corners==
To use custom corners as the parent of your theme (so you only specify changes from it instead of building your own from scratch) follow these instructions:
# Make a copy of the custom-corners directory and rename it to something else
# open the "user_styles.css" file, delete everything and save it.
# open "config.php" and set the following:
## $THEME->sheets = array('user_styles');
## $THEME->standardsheets = array('styles_layout');
## $THEME->parent = 'custom_corners';
## $THEME->parentsheets = array('user_styles');
# save "config.php"
# edit your profile within moodle to use the new theme
# You should see no difference, but can make CSS additions to "user_styles.css" which will appear when you refresh the page.

Latest revision as of 08:11, 16 June 2011

This development related page is now located in the Dev docs.

See the Custom Corners page in the Dev docs.