Topic: Quick Guide: Child Theme
Why should I use a Child Theme?
One thing: updates of the parent theme don't destroy your customizations. You are working in a seperate folder which uses all the functionalities Arras Theme has.
How do I make a Child Theme?
Copy the folder "sample-child-theme" to wp-content/themes and rename it. For this Quick Guide I'm going to make a Child Theme named 'Kuro' (which means Black in Japanese).
There's a style.css in the sample-child-theme (now named Kuro). Open it and you'll see this.
/*
Theme Name: Child Theme of Arras Theme
Theme URI: http://www.arrastheme.com/
Description: Child theme for the Arras Theme for WordPress
Author: Creature
Author URI: http://www.arrastheme.com/
Template: arras-theme
Version: 1.0
.
For more information on how to create and use child themes:
http://codex.wordpress.org/Child_Themes
Any CSS code written below will override any existing
declarations from the theme itself.
.
*/Change this part into anything you like
Theme Name: Child Theme of Arras Theme
Theme URI: http://www.arrastheme.com/
Description: Child theme for the Arras Theme for WordPress
Author: Creature
Author URI: http://www.arrastheme.com/Mine is now:
/*
Theme Name: Kuro
Theme URI: http://www.kuro.ex
Description: Black Child Theme for Arras
Author: Giovanni / Extatix
Author URI: http://www.animeblog.nl
Template: arras-theme
Version: 1.0
.
For more information on how to create and use child themes:
http://codex.wordpress.org/Child_Themes
Any CSS code written below will override any existing
declarations from the theme itself.
.
*/You're now ready to go. Go to WordPress and select Apperance - Themes. You'll now see your newly created Child Theme.

Press activate and you are ready to go. If you now visit your site you'll see a standard Arras Theme. Next thing we are going to do is change some colors. Let's say I want a completely black background (the theme is called Kuro after all).
For that I need to add
#wrapper { background: #000; }to the stylesheet.
You do that in the style.css located in the child theme folder (aka Kuro).
It'll look like this now.
/*
Theme Name: Kuro
Theme URI: http://www.kuro.ex
Description: Black Child Theme for Arras
Author: Giovanni / Extatix
Author URI: http://www.animeblog.nl
Template: arras-theme
Version: 1.0
.
For more information on how to create and use child themes:
http://codex.wordpress.org/Child_Themes
Any CSS code written below will override any existing
declarations from the theme itself.
.
*/
#wrapper { background: #000; }Which results in:

That's all you need to know. Put changes in the css in the style.css and it will overrule the default.css / legacy.css (whatever you choose in the theme options).
The big plus of this (I'll repeat it):
Let's say you've put about 50 lines of css in the style.css and Arras Theme 1.4.4 is released. Simply update it and your changes are still there. No more worries about redoing css stuff.
Neat, huh?
Please ask questions about Arras on forum, not through mail, thanks.













