Creating a Derived Theme ======================== **Lesson 1** A derived theme takes most of the settings from its "parent" theme and lets you change a few things to your liking without creating an entire theme package. To create a derived theme, first choose a name. For our example we'll call our theme 'mytheme'. Hopefully you'll be a bit more creative. But throughout this document, wherever you see 'mytheme', replace that with the name you chose. **Directory Structure** First you need to create a theme directory structure. We'll keep it simple. We need a php directory and a css directory. Here are the Unix/Linux commands to do this. Assume that 'mywebsite' is your top level $Projectname folder. cd mywebsite mkdir view/theme/mytheme mkdir view/theme/mytheme/css mkdir view/theme/mytheme/php Great. Now we need a couple of files. The first one is your theme info file, which describes the theme. It will be called view/theme/mytheme/php/theme.php (clever name huh?) Inside it, put the following information - edit as needed Display Settings as their default theme. **Lesson 2** If you want to use the redbasic schemas for your derived theme, you have to do a bit more. Do everything as above, but don't create view/theme/mytheme/php/style.php, but copy instead view/theme/redbasic/php/style.php to view/theme/mytheme/php/style.php. Modify that file and remove (or comment out) these two lines: if(local_channel() && App::$channel && App::$channel['channel_theme'] != 'redbasic') set_pconfig(local_channel(), 'redbasic', 'schema', '---'); Also add this line at the bottom: echo @file_get_contents('view/theme/mytheme/css/style.css'); To show the schema selector you have to copy view/theme/redbasic/tpl/theme_settings.tpl to view/theme/mytheme/tpl/theme_settings.tpl. Modify that file and replace the lines: {{if $theme == redbasic}} {{include file="field_select.tpl" field=$schema}} {{/if}} with: {{include file="field_select.tpl" field=$schema}} #include doc/macros/main_footer.bb;