<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Arras WordPress Theme Community Forums — Guides Database]]></title>
		<link>http://www.arrastheme.com/forums/</link>
		<atom:link href="http://www.arrastheme.com/forums/feed-rss-forum11.xml" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent topics at Arras WordPress Theme Community Forums.]]></description>
		<lastBuildDate>Sun, 31 Jul 2011 08:11:42 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[[1.5.1.1]Exclude hide duplicate posts rule from certain sections]]></title>
			<link>http://www.arrastheme.com/forums/topic7284-1511exclude-hide-duplicate-posts-rule-from-certain-sections-new-posts.html</link>
			<description><![CDATA[<p>I am working on a guide that I&#039;m putting up on my site but I&#039;m going to post the rough draft here first. It&#039;s about how to exclude the hide duplicate posts rule from certain sections of the homepage. If this is inappropriate please delete.</p><p>slideshow.php<br />While the problem seems complicated the fix is actually very easy. The solution required editing a couple php files but we will only be commenting out code so anybody regardless of coding knowledge can do it. Commenting out php code tells the particular line of code not to run and is done using only two characters (//). The first file we need to edit is arras/library/slideshow.php which obviously controls the slideshow. Go to line 16 and you should see:</p><p>&#039;exclude&#039;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; $post_blacklist,</p><p>We will need to comment out this line of code by putting // in front of it. The code at line 16 should now look like:</p><p> //&#039;exclude&#039;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; $post_blacklist,</p><p>What we just did was tell the slideshow not to look into other post sections to see what they are displaying. Now we want to tell it not to allow other post sections to look in the slideshow to see what it’s displaying. To do that go to line 48 and you should see:</p><p>arras_blacklist_duplicates(); // required for duplicate posts function to work.</p><p>Just like before we need to comment out this line of code. After you comment it out is should look like this:</p><p>//arras_blacklist_duplicates(); // required for duplicate posts function to work.</p><p>home.php<br />Now that we’ve gotten the slideshow to work the way we want it’s time to comment out the exclude rule in home.php which control what you see on the homepage. In my case I want the featured posts #2 not to look at other post sections to see what posts they are showing. Simply go to line 58 and you should see the following line of code:</p><p>&#039;exclude&#039;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; $post_blacklist,</p><p>We need to comment out that line of code so that it looks like this:</p><p>//&#039;exclude&#039;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; $post_blacklist,</p><p>Now the homepage functions exactly the way I want it too. If you need other post sections on the homepage to not follow the rule all you have to do is comment out the &#039;exclude&#039;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =&gt; $post_blacklist, line for each post section you want to ignore the rule. Each section is clearly labeled in the home.php file. If there is enough interest in it I will show you how to actually make these edits and option that shows up in the theme options page.</p>]]></description>
			<author><![CDATA[null@example.com (krom8)]]></author>
			<pubDate>Sun, 31 Jul 2011 08:11:42 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic7284-1511exclude-hide-duplicate-posts-rule-from-certain-sections-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[[1.5] Arras 1.5.0.1 and WordPress 3.2]]></title>
			<link>http://www.arrastheme.com/forums/topic6442-15-arras-1501-and-wordpress-32-new-posts.html</link>
			<description><![CDATA[<p>If you were to run Arras 1.5.0.1 on the latest build of WordPress 3.2, you would probably run into this error upon activation:</p><div class="codebox"><pre><code>Fatal error: Call to undefined method Arras_Widget_Tag_Cloud::WP_Widget_Tag_Cloud() in ..../wp-content/themes/arras/library/widgets.php on line 355</code></pre></div><p>To fix this, simply replace line 355 of /library/widgets.php from:</p><div class="codebox"><pre><code>function Arras_Widget_Tag_Cloud() {
    $this-&gt;WP_Widget_Tag_Cloud();
}</code></pre></div><p>to:</p><div class="codebox"><pre><code>function Arras_Widget_Tag_Cloud() {
    parent::__construct();
}</code></pre></div><p>P.S: The new admin interface blends well with the theme options layout <img src="http://www.arrastheme.com/forums/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>EDIT (05/07/11): Alternatively, you can download Arras 1.5.1 <a href="http://www.arrastheme.com/forums/topic7004-arras-theme-151-now-available.html">here</a>, which has it fixed.</p>]]></description>
			<author><![CDATA[null@example.com (zy)]]></author>
			<pubDate>Thu, 12 May 2011 14:27:11 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic6442-15-arras-1501-and-wordpress-32-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[Better JavaScript-Handling (some code included)]]></title>
			<link>http://www.arrastheme.com/forums/topic4892-better-javascripthandling-some-code-included-new-posts.html</link>
			<description><![CDATA[<p>The current version of Arras (1.5.0.1) seems to be pretty &quot;dumb&quot; when it comes to the JavaScript files. For example it loads the jQuery-UI and Cycle PlugIn-Files even if they aren&#039;t used at all.</p><p>I made a quick fix for this behavior but unfortunately I don&#039;t have the time to test it as much as it should be tested. If you make the following changes to some of the files, the jQuery UI-files are only loaded if a Tabbed Sidebar is used and the Cycle-PlugIn is only loaded if the Slideshow is activated in the settings.</p><p>It would probably be a good idea to modify new versions of Arras so it doesn&#039;t load stuff it doesn&#039;t need (and IMHO it really DOES matter if 50 KB of unused JS-files are loaded or if not...)</p><p>So here we go:</p><p><strong><span class="bbu">library\slideshow.php</span></strong></p><p>replace </p><div class="codebox"><pre><code>add_action(&#039;wp_footer&#039;, &#039;arras_add_slideshow_js&#039;);</code></pre></div><p>with:</p><div class="codebox"><pre><code>if (arras_get_option(&#039;enable_slideshow&#039;) &amp;&amp; ( is_home() || is_front_page() )) {
    add_action(&#039;wp_footer&#039;, &#039;arras_add_slideshow_js&#039;);
}</code></pre></div><p><strong><span class="bbu">header.php</span></strong></p><p>replace </p><div class="codebox"><pre><code>wp_enqueue_script(&#039;jquery-ui-tabs&#039;, null, array(&#039;jquery-ui-core&#039;, &#039;jquery&#039;), null, false);</code></pre></div><p>with:</p><div class="codebox"><pre><code>if (is_active_widget(&#039;arras_tabbed_sidebar&#039;)) {
    wp_enqueue_script(&#039;jquery-ui-tabs&#039;, null, array(&#039;jquery-ui-core&#039;, &#039;jquery&#039;), null, false); 
}</code></pre></div><p>and replace</p><div class="codebox"><pre><code>if ( is_home() || is_front_page() ) {
    wp_enqueue_script(&#039;jquery-cycle&#039;, get_template_directory_uri() . &#039;/js/jquery.cycle.min.js&#039;, &#039;jquery&#039;, null, true);
}</code></pre></div><p>with:<br />&nbsp; &nbsp; <br /></p><div class="codebox"><pre><code>if (arras_get_option(&#039;enable_slideshow&#039;) &amp;&amp; ( is_home() || is_front_page() )) {
    wp_enqueue_script(&#039;jquery-cycle&#039;, get_template_directory_uri() . &#039;/js/jquery.cycle.min.js&#039;, &#039;jquery&#039;, null, true);
}</code></pre></div><p>finally, replace:</p><div class="codebox"><pre><code>wp_enqueue_script(&#039;jquery-ui-tabs&#039;, null, array(&#039;jquery-ui-core&#039;, &#039;jquery&#039;), null, false);</code></pre></div><p>with:</p><div class="codebox"><pre><code>if (is_active_widget(false, false, &#039;arras_tabbed_sidebar&#039;)) { 
    wp_enqueue_script(&#039;jquery-ui-tabs&#039;, null, array(&#039;jquery-ui-core&#039;, &#039;jquery&#039;), null, false); 
} </code></pre></div><p><strong><span class="bbu">js/header.js.php</span></strong></p><p>Replace</p><div class="codebox"><pre><code>$(&#039;.multi-sidebar&#039;).tabs();</code></pre></div><p>with</p><div class="codebox"><pre><code>&lt;?php if (is_active_widget(false, false, &#039;arras_tabbed_sidebar&#039;)) { ?&gt;
$(&#039;.multi-sidebar&#039;).tabs();
&lt;?php } ?&gt;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (chland)]]></author>
			<pubDate>Mon, 17 Jan 2011 19:04:58 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic4892-better-javascripthandling-some-code-included-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[Video Thumbnails (WP-Plugin) Support]]></title>
			<link>http://www.arrastheme.com/forums/topic4852-video-thumbnails-wpplugin-support-new-posts.html</link>
			<description><![CDATA[<p>Just want to share my code for those who&#039;re in need.</p><p>I&#039;m running a community with a video-section. Mostly videos hosted on blip.tv and vimeo are shown. I needed a solution to fetch thumbnails from my articles containing the embeded videos to be shown when viewing the video-category.</p><p>Yesterday I found this WP-plugin, it&#039;s called Video Thumbnails and can be found here: <a href="http://wordpress.org/extend/plugins/video-thumbnails/">http://wordpress.org/extend/plugins/video-thumbnails/</a></p><p>I use the plugin together with the code I found here: <a href="http://www.arrastheme.com/forums/topic2535-embedding-vimeo-in-node-based.html">http://www.arrastheme.com/forums/topic2 … based.html</a> (post #4) - there, a custom field is used and you have to manually resize the thumbnail, so it&#039;s not really an &quot;automatic&quot; solution.<br />Here is my adapted code (arras/library/tapestries.php) - I&#039;m using Arras 1.5.0.1. In tapestry.php at the very bottom search for </p><div class="codebox"><pre><code>$postheader .= arras_get_thumbnail($tapestry . &#039;-thumb&#039;);</code></pre></div><p> and replace this line with following:<br /></p><div class="codebox"><pre><code>$video_thumbnail = get_video_thumbnail();
    if($video_thumbnail){ 
    $postheader .=  &quot;&lt;img src=&#039;&quot; . $video_thumbnail . &quot;&#039; width=&#039;195&#039; /&gt;&quot;; }
    else 
    {
    $postheader .= arras_get_thumbnail($tapestry . &#039;-thumb&#039;); }</code></pre></div><p>so finally the last lines of code in this file look like this:<br /></p><div class="codebox"><pre><code>/**
 * Helper function to display headers for certain tapestries.
 * @since 1.4.3
 */
function arras_generic_postheader($tapestry, $show_meta = false) {
    global $post;
    
    $postheader = &#039;&lt;div class=&quot;entry-thumbnails&quot;&gt;&#039;;
    $postheader .= &#039;&lt;a class=&quot;entry-thumbnails-link&quot; href=&quot;&#039; . get_permalink() . &#039;&quot;&gt;&#039;;
    $video_thumbnail = get_video_thumbnail();
    if($video_thumbnail){ 
    $postheader .=  &quot;&lt;img src=&#039;&quot; . $video_thumbnail . &quot;&#039; width=&#039;195&#039; /&gt;&quot;; }
    else 
    {
    $postheader .= arras_get_thumbnail($tapestry . &#039;-thumb&#039;); }
    
    if ($show_meta) {    
        $postheader .= &#039;&lt;span class=&quot;entry-meta&quot;&gt;&lt;span class=&quot;entry-comments&quot;&gt;&#039; . get_comments_number() . &#039;&lt;/span&gt;&#039;;
        $postheader .= &#039;&lt;abbr class=&quot;published&quot; title=&quot;&#039; . get_the_time(&#039;c&#039;) . &#039;&quot;&gt;&#039; . get_the_time( get_option(&#039;date_format&#039;) ) . &#039;&lt;/abbr&gt;&lt;/span&gt;&#039;;
    }
    
    $postheader .= &#039;&lt;/a&gt;&#039;;

    $postheader .= &#039;&lt;/div&gt;&#039;;
    
    $postheader .= &#039;&lt;h3 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&#039; . get_permalink() . &#039;&quot; rel=&quot;bookmark&quot;&gt;&#039; . get_the_title() . &#039;&lt;/a&gt;&lt;/h3&gt;&#039;;
    
    return $postheader;
}

/* End of file tapestries.php */
/* Location: ./library/tapestries.php */</code></pre></div><p>In addition to that, I tweaked my archive.php (arras/archive.php) to display different categories in different displays (videos are displayed in &quot;default&quot; mode). This is important - if you use another &quot;mode&quot; (traditional or archive_display) you have to adjust the thumbnail-width in the tapestries.php in this line.<br /></p><div class="codebox"><pre><code> $postheader .=  &quot;&lt;img src=&#039;&quot; . $video_thumbnail . &quot;&#039; width=&#039;195&#039; /&gt;&quot;; }</code></pre></div><p>So, if you install the Video Thumbnails plugin, just activate, write an article, embed a video (in the editor-window) from vimeo, youtube or blip.tv and save it.<br /> After saving you will see the video-thumbnail and it&#039;s url somewhere on the right displayed in a widget (in my case the widget shows under &quot;Featured Thumbnail&quot;-widget. That&#039;s all. No need for uploading/downloading a thumbnail - just embed the video - that&#039;s it.</p><p>You can see a working example on my site: <a href="http://www.minemusig.at/blog/category/musigtv/">http://www.minemusig.at/blog/category/musigtv/</a></p><p>I&#039;m not really a programmer, so no real support. For me, it works nice - hope it does for you, too - in case, say thank you&nbsp; <img src="http://www.arrastheme.com/forums/img/smilies/cool.png" width="15" height="15" alt="cool" /> </p><p>Greetings,<br />Harald</p>]]></description>
			<author><![CDATA[null@example.com (noizeburger)]]></author>
			<pubDate>Fri, 14 Jan 2011 23:42:21 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic4852-video-thumbnails-wpplugin-support-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[Handy CSS Tricks For your Arras Site]]></title>
			<link>http://www.arrastheme.com/forums/topic4646-handy-css-tricks-for-your-arras-site-new-posts.html</link>
			<description><![CDATA[<p>Here is a quick tip for you to make your site a little more interesting, </p><p>If you want round corners on your Arras site, instead of the boring borders, simple CSS can make round corners, even with shadows!</p><p>For the simple round corners, add this CSS to the image border rulesets in your default.css folder, </p><p>-moz-border-radius: 6px; -webkit-border-radius: 6px; }&nbsp; &nbsp;(after the last &quot;}&quot; erase, and leave the ending &quot;}&quot; , do not add separate brackets, the rulesets are not being specified to anything.</p><p>To add the shadows to the border, </p><p>-moz-box-shadow: 2px 2px 2px #dddddd; -webkit-box-shadow: 2px 2px 2px #dddddd; }</p><p>To see it in action, visit <a href="http://savannahvideocentral.com">http://savannahvideocentral.com</a></p>]]></description>
			<author><![CDATA[null@example.com (gunju221)]]></author>
			<pubDate>Wed, 29 Dec 2010 04:59:07 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic4646-handy-css-tricks-for-your-arras-site-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[HoverCards from Gravatar.com]]></title>
			<link>http://www.arrastheme.com/forums/topic3806-hovercards-from-gravatarcom-new-posts.html</link>
			<description><![CDATA[<p>Just put the line<br /></p><div class="quotebox"><blockquote><p>wp_enqueue_script( &#039;gprofiles&#039;, get_template_directory_uri().&#039;/js/gprofiles.js&#039;, &#039;jquery&#039;, &#039;e&#039;, true);</p></blockquote></div><p> in header.php below </p><div class="quotebox"><blockquote><p>wp_enqueue_script(&#039;jquery-ui-tabs&#039;, null, array(&#039;jquery-ui-core&#039;, &#039;jquery&#039;), null, false);</p></blockquote></div><p>.</p><p>Please note that the gravatar&#039;s js file is on my localhost. if you want to directly insert the js file from gravatar&#039;s server, please paste the following line:</p><div class="quotebox"><blockquote><p>wp_enqueue_script( &#039;gprofiles&#039;, &#039;<a href="http://s.gravatar.com/js/gprofiles.js">http://s.gravatar.com/js/gprofiles.js</a>&#039;, &#039;jquery&#039;, &#039;e&#039;, true);</p></blockquote></div><p>It is a great future provided by <a href="http://www.gravatar.com">Gravatar</a></p>]]></description>
			<author><![CDATA[null@example.com (dumbravaandrei)]]></author>
			<pubDate>Fri, 22 Oct 2010 08:00:39 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic3806-hovercards-from-gravatarcom-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[[1.5] Adding extra social links to the nav bar]]></title>
			<link>http://www.arrastheme.com/forums/topic3454-15-adding-extra-social-links-to-the-nav-bar-new-posts.html</link>
			<description><![CDATA[<p>There are quite a lot of you who want to know how to add sociallinks to the quick navigation. Here&#039;s a quick tutorial how. I&#039;m not going to bother with adding options since that requires some more work but if people are interested in that I&#039;ll do a write-up on that.</p><p>In this example I&#039;m going to add a link to my YouTube Channel.&nbsp; (This functions goes in functions.php)</p><div class="codebox"><pre><code>function add_extra_sociallinks() { 
            ?&gt;
        &lt;li&gt;&lt;a id=&quot;youtube&quot; title=&quot;&lt;?php printf( __( &#039;%s on YouTube&#039;, &#039;arras&#039; ), esc_html( get_bloginfo(&#039;name&#039;), 1 ) ) ?&gt;&quot; href=&quot;http://www.youtube.com/user/watkijkikoptv&quot; target=&quot;_blank&quot;&gt;&lt;?php _e(&#039;YouTube&#039;, &#039;arras&#039;) ?&gt;&lt;/a&gt;&lt;/li&gt;
        &lt;?php 
}
add_action(&#039;arras_quick_nav&#039;, &#039;add_extra_sociallinks&#039;); </code></pre></div><p>Now all that is needed is a 16x16 icon which will be added to user.css or style.css (if you use a Child Theme).</p><div class="codebox"><pre><code>.quick-nav #youtube { background: url(images/youtube.png) no-repeat; }</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (extatix)]]></author>
			<pubDate>Mon, 27 Sep 2010 08:37:10 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic3454-15-adding-extra-social-links-to-the-nav-bar-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[Integrating your Arras Theme/Wordpress blog with a phpBB forum]]></title>
			<link>http://www.arrastheme.com/forums/topic1969-integrating-your-arras-themewordpress-blog-with-a-phpbb-forum-new-posts.html</link>
			<description><![CDATA[<p>I know I had a lot of trouble setting this up, so I want to make it easy for others to do this when they decide a phpBB forum is something they want to use with their wordpress site. </p><p>Here is an example of what I&#039;ve done with my site:</p><p><a href="http://oriolesprospects.com/forums/">The Forums</a> | <a href="http://oriolesprospects.com/">The Normal Website</a></p><p>Make sure you have a phpBB forum installed before you start this process, and that your forum style closely matches your normal website. </p><p><strong>Step 1</strong> - Open up your normal website and open the page source. </p><p>Find:<br /></p><div class="codebox"><pre><code>&lt;div id=&quot;header&quot;&gt;</code></pre></div><p><strong>Step 2</strong> - If you want only the header on top of your forum, copy everything up to:<br /></p><div class="codebox"><pre><code>&lt;/div&gt;&lt;!-- #header --&gt;</code></pre></div><p>If you want to include the navigation bar from your normal website, copy everything up until:<br /></p><div class="codebox"><pre><code> &lt;/div&gt;&lt;!-- #nav --&gt;</code></pre></div><p><strong>Step 3</strong> - Open up your overall_header.html file of your forum and paste the code you got from your normal website. Each forum is going to require that you paste it in a different spot, so it&#039;s going to take some trial and error. </p><p><strong>Step 4</strong> - Once you&#039;ve done that, you have to head over to your wordpress site&#039;s CSS files and copy the CSS files for your header, nav or anything else that affects your header. Paste the CSS from your normal website into either stylesheet.css or colours.css. </p><p>That&#039;s basically all you have to do! If you have any other questions, don&#039;t hesitate to ask.</p>]]></description>
			<author><![CDATA[null@example.com (oriolesprospects)]]></author>
			<pubDate>Sun, 30 May 2010 21:48:37 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic1969-integrating-your-arras-themewordpress-blog-with-a-phpbb-forum-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[Quick Guide: Child Theme]]></title>
			<link>http://www.arrastheme.com/forums/topic1841-quick-guide-child-theme-new-posts.html</link>
			<description><![CDATA[<p><strong>Why should I use a Child Theme?</strong></p><p>One thing: updates of the parent theme don&#039;t destroy your customizations. You are working in a seperate folder which uses all the functionalities Arras Theme has.</p><p><strong>How do I make a Child Theme?</strong></p><p>Copy the folder &quot;sample-child-theme&quot; to wp-content/themes and rename it. For this Quick Guide I&#039;m going to make a Child Theme named &#039;Kuro&#039; (which means Black in Japanese).</p><p>There&#039;s a style.css in the sample-child-theme (now named Kuro). Open it and you&#039;ll see this.<br /></p><div class="codebox"><pre><code>/*
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.
.
*/</code></pre></div><p>Change this part into anything you like<br /></p><div class="codebox"><pre><code>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/</code></pre></div><p>Mine is now:<br /></p><div class="codebox"><pre><code>/*
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.
.
*/</code></pre></div><p>You&#039;re now ready to go. Go to WordPress and select Apperance - Themes. You&#039;ll now see your newly created Child Theme.</p><p><span class="postimg"><img src="http://www.watkijkikoptv.info/mp3/kuro/kuro_01.png" alt="http://www.watkijkikoptv.info/mp3/kuro/kuro_01.png" /></span></p><p>Press activate and you are ready to go. If you now visit your site you&#039;ll see a standard Arras Theme. Next thing we are going to do is change some colors. Let&#039;s say I want a completely black background (the theme is called Kuro after all).<br />For that I need to add<br /></p><div class="codebox"><pre><code>#wrapper { background: #000; }</code></pre></div><p> to the stylesheet.</p><p>You do that in the style.css located in the child theme folder (aka Kuro).</p><p>It&#039;ll look like this now.<br /></p><div class="codebox"><pre><code>/*
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; }</code></pre></div><p>Which results in:</p><p><span class="postimg"><img src="http://www.watkijkikoptv.info/mp3/kuro/kuro_02.png" alt="http://www.watkijkikoptv.info/mp3/kuro/kuro_02.png" /></span></p><p>That&#039;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). </p><p>The big plus of this (I&#039;ll repeat it): <br />Let&#039;s say you&#039;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.</p><p>Neat, huh?</p>]]></description>
			<author><![CDATA[null@example.com (extatix)]]></author>
			<pubDate>Fri, 21 May 2010 06:27:37 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic1841-quick-guide-child-theme-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[[1.4.3] Using Custom Header]]></title>
			<link>http://www.arrastheme.com/forums/topic1720-143-using-custom-header-new-posts.html</link>
			<description><![CDATA[<p>In 1.4.3, the custom header function has been replaced by the custom logo function available in the theme options. The code for the custom header function file is still available in the 1.4.3 release. All you need to do is to include the file to use it again.</p><p>Simply include this line in <em>functions.php</em>:<br /></p><div class="codebox"><pre><code>require_once ARRAS_LIB . &#039;/admin/custom-header.php&#039;;</code></pre></div><p>just before:<br /></p><div class="codebox"><pre><code>require_once ARRAS_LIB . &#039;/launcher.php&#039;;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (zy)]]></author>
			<pubDate>Fri, 14 May 2010 14:37:34 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic1720-143-using-custom-header-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[Video showing how to add thumbnails with Arras 1.4+]]></title>
			<link>http://www.arrastheme.com/forums/topic1505-video-showing-how-to-add-thumbnails-with-arras-14-new-posts.html</link>
			<description><![CDATA[<p>There have been a lot of question about how to add post thumbnails to Arras post, so I&#039;ve decided to make a simple screencast of how simple it is. I hope that Arras users find it helpful.<br /><a href="http://www.voidtrance.net/2010/04/adding-post-thumbnails-with-arras-theme">http://www.voidtrance.net/2010/04/addin … rras-theme</a></p>]]></description>
			<author><![CDATA[null@example.com (voidtrance)]]></author>
			<pubDate>Mon, 26 Apr 2010 18:38:03 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic1505-video-showing-how-to-add-thumbnails-with-arras-14-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[Plugin for Automatic Thumbnails (First Image from Post)]]></title>
			<link>http://www.arrastheme.com/forums/topic1430-plugin-for-automatic-thumbnails-first-image-from-post-new-posts.html</link>
			<description><![CDATA[<p>There is a new plugin available which grabs the first image from a post: <a href="http://wordpress.org/extend/plugins/auto-post-thumbnail/">http://wordpress.org/extend/plugins/aut … thumbnail/</a></p>]]></description>
			<author><![CDATA[null@example.com (extatix)]]></author>
			<pubDate>Wed, 21 Apr 2010 08:29:38 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic1430-plugin-for-automatic-thumbnails-first-image-from-post-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[Solved the repeating of Featured Posts in Latest Posts]]></title>
			<link>http://www.arrastheme.com/forums/topic1421-solved-the-repeating-of-featured-posts-in-latest-posts-new-posts.html</link>
			<description><![CDATA[<p>A problem a lot of people have, and a friend of mine was able to solve it while butchering this theme for his own devices..</p><div class="quotebox"><blockquote><p>Its dead easy and just requires 1 line of code to be added, and tbh i cba to post it but your more than welcome to: <br />line 80 of home.php, add a line after it, and insert </p><p>&#039;offset&#039; =&gt; N,</p><p>Set N to the number of featured posts you have.<br />Quotations and comma must be included.</p></blockquote></div><p>I&#039;m no expert, but I think it&#039;s safe to say that this will only work if you haven&#039;t set your Features Posts to a specific category.<br />He&#039;s put it into use on my blog ( <a href="http://www.k-jessop.co.uk">www.k-jessop.co.uk</a> ) and my value is set to 6 to offset my 6 featured posts.</p><p>Hope this helps people.</p>]]></description>
			<author><![CDATA[null@example.com (kouri01)]]></author>
			<pubDate>Tue, 20 Apr 2010 14:41:11 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic1421-solved-the-repeating-of-featured-posts-in-latest-posts-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[[1.4.3] Customising Your Theme]]></title>
			<link>http://www.arrastheme.com/forums/topic1316-143-customising-your-theme-new-posts.html</link>
			<description><![CDATA[<p>Here&#039;s a quick guide on how to customise your theme installation without losing any of them during upgrades.</p><p><span class="bbu"><strong>Method #1: CSS Editing via WordPress Editor</strong></span></p><p>You&#039;ll need a web browser with a certain web developers tool, for this guide I shall use <a href="http://www.mozilla.com/firefox">Firefox 3.6</a> with <a href="http://www.getfirebug.com">Firebug</a>.</p><p>I recommend that you have a basic understanding of Cascading Style Sheets (CSS) for this method. A good site to start is <a href="http://www.w3schools.com/">W3Schools</a>.</p><br /><br /><p><strong>Step 1:</strong> Ensure that Arras Theme is activated and working in your WordPress installation.<br /><span class="postimg"><img src="http://i44.tinypic.com/m7uozn.png" alt="http://i44.tinypic.com/m7uozn.png" /></span></p><br /><p><strong>Step 2:</strong> Go to Appearance &gt; Editor. You should see something like this:<br /><span class="postimg"><img src="http://i42.tinypic.com/r08kyq.png" alt="http://i42.tinypic.com/r08kyq.png" /></span></p><br /><p><strong>Step 3:</strong> Under the Templates column on the right, select user.css (located at the bottom of the list). You should see something like this:<br /><span class="postimg"><img src="http://i43.tinypic.com/262r7lz.png" alt="http://i43.tinypic.com/262r7lz.png" /></span></p><br /><p><strong>Step 4:</strong> Now, in a new tab/window, go to the page that you wish to edit. For this guide, I shall edit the home page:<br /><span class="postimg"><img src="http://i40.tinypic.com/51c4m9.png" alt="http://i40.tinypic.com/51c4m9.png" /></span></p><br /><p><strong>Step 5:</strong> Next, click on the Firebug icon located at the bottom of your page. The Firebug tab should pop up.<br /><span class="postimg"><img src="http://i40.tinypic.com/2zjc19l.png" alt="http://i40.tinypic.com/2zjc19l.png" /></span></p><br /><p><strong>Step 6:</strong> Click on this button to start inspecting the area you wish to edit:<br /><span class="postimg"><img src="http://i39.tinypic.com/jhc2rt.png" alt="http://i39.tinypic.com/jhc2rt.png" /></span></p><br /><p><strong>Step 7:</strong> Hover your mouse to the area you wish to edit. When you have chosen your desired area, click on it. The border should disappear, and the values in the Firebug tab should change.<br /><span class="postimg"><img src="http://i44.tinypic.com/2n8mw5x.png" alt="http://i44.tinypic.com/2n8mw5x.png" /></span></p><br /><p><strong>Step 8:</strong> You can play with the CSS properties at the Style tab on the right column. For example, I have changed the color of the header:<br /><span class="postimg"><img src="http://i39.tinypic.com/oh3a6u.png" alt="http://i39.tinypic.com/oh3a6u.png" /></span></p><br /><p><strong>Step 9:</strong> Once you are satisfied with the changes, copy the CSS code of the whole element and paste it in the Editor:<br /><span class="postimg"><img src="http://i44.tinypic.com/2qvavbc.png" alt="http://i44.tinypic.com/2qvavbc.png" /></span><br /><span class="postimg"><img src="http://i44.tinypic.com/1owwgn.png" alt="http://i44.tinypic.com/1owwgn.png" /></span></p><br /><p><strong>Step 10:</strong> Save the changes, refresh the page and you have successfully customised your theme!</p>]]></description>
			<author><![CDATA[null@example.com (zy)]]></author>
			<pubDate>Mon, 12 Apr 2010 14:54:25 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic1316-143-customising-your-theme-new-posts.html</guid>
		</item>
		<item>
			<title><![CDATA[[1.4.2] Tutorial: How do I change the color of...]]></title>
			<link>http://www.arrastheme.com/forums/topic942-142-tutorial-how-do-i-change-the-color-of-new-posts.html</link>
			<description><![CDATA[<p>Hello fellow Arras Theme User. So you want to change some colors on you freshly installed Arras Theme 1.4.2 and you don&#039;t know how? Well, here&#039;s a quick tutorial. I&#039;ll try to be as thorough as I can but I can miss a bit. Don&#039;t be afraid to ask. </p><p>This tutorial is based on the default.css. If you want to make a change do it to the user.css, it&#039;s an empty css which will &#039;overwrite&#039; the default.css. So there&#039;s actually no need to fiddle with the default.css. In most parts I&#039;ll simply give the part which you can put in the user.css, so if you see .widgetcontent { color: #fff; } you can copy/paste that one into your user.css and change the colorcode to your liking. You can combine parts of course. If you see .widgetcontent { color: #fff; } and .widgetcontent { background: #fff; } you can combine it to .widgetcontent { color: #fff; background: #fff; } </p><p>There are parts which require some more tweaking but I&#039;ll put up an explanation why.</p><p>Question numbero uno, what colorcode is red (or yellow, or green)? I&#039;m a lazy bastard, so <a href="http://www.computerhope.com/htmcolor.htm">here&#039;s a link</a>.</p><p>This is the basic &#039;index&#039; of the tutorial. I&#039;ve added 14. Quick preview &amp; 15. Older entries/Newer entries, which are not on the image <img src="http://www.arrastheme.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p><span class="postimg"><img src="http://www.watkijkikoptv.info/mp3/Arras_Tutorial.png" alt="http://www.watkijkikoptv.info/mp3/Arras_Tutorial.png" /></span></p><p>And yes, I have created a new install for this tutorial, hence the Arras Tutorial title of the blog <img src="http://www.arrastheme.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>The forum will crop this beyond recognition so here&#039;s the url to the &#039;full&#039; image</p><p><a href="http://www.watkijkikoptv.info/mp3/Arras_Tutorial.png">http://www.watkijkikoptv.info/mp3/Arras_Tutorial.png</a></p><p><strong>1. Header Background</strong></p><p>Header background<br /></p><div class="codebox"><pre><code>#header                    { background: #fff; }</code></pre></div><p>Advanced: I want to have have a header which is 980px wide (like the page)</p><div class="codebox"><pre><code>#header                    { background: none; }
#branding                    { background: #fff !important; }</code></pre></div><p><strong>2. Navbar</strong></p><p>This one is a hoot to figure out <img src="http://www.arrastheme.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>Navbar<br /></p><div class="codebox"><pre><code>#nav                    { background: #fff; } </code></pre></div><p>Advanced: I want to have have a navbar which is 980px wide (like the page)<br /></p><div class="codebox"><pre><code>#nav                    { background: none; }
#nav-content                     { background: #fff; } </code></pre></div><p>Color of links/text on the visible bar<br /></p><div class="codebox"><pre><code>.sf-menu a                 { color: #fff; }</code></pre></div><p>Color of links/text on the dropdowns<br /></p><div class="codebox"><pre><code>.sf-menu li ul a                 { color: #fff !important; } </code></pre></div><p><strong>3. Blogname </strong></p><div class="codebox"><pre><code>.blog-name a:link, .blog-name a:visited    { color: #fff !important; }</code></pre></div><p>(Advice, don&#039;t display the blog description)</p><div class="codebox"><pre><code>.blog-description                { display: none; }</code></pre></div><p><strong>4. Header Border</strong></p><div class="codebox"><pre><code>header                    { border-bottom: 5px solid #fff; }</code></pre></div><p>Advanced: I want to have have a header border which is 980px wide (like the page)</p><div class="codebox"><pre><code>#header                    { border-bottom: none; }
#branding                    { border-bottom: 5px solid #fff; }</code></pre></div><p><strong>5. Searchbar </strong></p><p>Border around the searchbar<br /></p><div class="codebox"><pre><code>#searchbar                { border: 4px solid #fff; }</code></pre></div><p>Color of the searchbar<br /></p><div class="codebox"><pre><code>#searchbar                { background: #fff; }</code></pre></div><p>Color of the searchform (where people put in the sh*t what they are looking for)<br /></p><div class="codebox"><pre><code>.searchform .s                { background: #fff; }</code></pre></div><p><strong>6. Widgetcontent </strong></p><p>Color of the border<br /></p><div class="codebox"><pre><code>.widgetcontent                { border: #fff; }</code></pre></div><p>Color of the text<br /></p><div class="codebox"><pre><code>.widgetcontent                 { color: #fff; }</code></pre></div><p>Color of the links in the text. <br />This one isn&#039;t actually there yet, but you can add it quite easily.<br /></p><div class="codebox"><pre><code>.widgetcontent a                { color: #fff; }</code></pre></div><p>Color of the background<br /></p><div class="codebox"><pre><code>.widgetcontent                { background: #fff; }</code></pre></div><p><strong>7. Widgettitle &amp; Border</strong></p><p>Color of the border<br /></p><div class="codebox"><pre><code>.widgettitle                { border: #fff; }</code></pre></div><p>Color of the title.<br /></p><div class="codebox"><pre><code>.widgettitle                { color: #fff; }</code></pre></div><p>Color of the background<br /></p><div class="codebox"><pre><code>.widgettitle                { background: #fff; }</code></pre></div><p><strong>8. Main slideshow</strong></p><p>Title<br /></p><div class="codebox"><pre><code>.featured-entry .entry-title        { color: #fff; } </code></pre></div><p>Description<br /></p><div class="codebox"><pre><code>.featured-entry .entry-summary        { color: #fff; } </code></pre></div><p>Border<br /></p><div class="codebox"><pre><code>.featured                    { border: 5px solid #fff; }</code></pre></div><p>&quot;Black bar&quot;<br /></p><div class="codebox"><pre><code>.featured-entry                { background: #fff; }</code></pre></div><p><strong>9. Color of title</strong></p><div class="codebox"><pre><code>.home-title                { color: #383331; }</code></pre></div><p>The border under it.<br /></p><div class="codebox"><pre><code>.home-title                { border-bottom: 1px solid #fff; }</code></pre></div><p>Note: You can add a background color here, it will give a colored bar.<br /></p><div class="codebox"><pre><code>.home-title                { background: #fff; } </code></pre></div><p>You might want to add this one too if you do this<br /></p><div class="codebox"><pre><code>.home-title                { width: 645px; }</code></pre></div><p>You can even put a border around the bar.<br /></p><div class="codebox"><pre><code>.home-title                { border: 1px solid #fff; }</code></pre></div><p>You might want to add this one too if you do this<br /></p><div class="codebox"><pre><code>.home-title                { width: 643px; }</code></pre></div><p>(You probably noticed the 643px vs 645px from above, this is because of the 1px border on both the left and right side of the bar.)</p><p><strong>10. Nodes</strong></p><p>Entry title<br /></p><div class="codebox"><pre><code>.posts-default .entry-title a:link, .posts-default .entry-title a:visited    { color: #fff; }</code></pre></div><p>Entry summary<br /></p><div class="codebox"><pre><code>.posts-default .entry-summary        { color: #fff; } </code></pre></div><p>Border around the image<br /></p><div class="codebox"><pre><code>.posts-default .entry-thumbnails-link    { border: 5px solid #fff; }</code></pre></div><p>&#039;Black bar&#039;<br /></p><div class="codebox"><pre><code>.posts-default .entry-meta        {  background: #fff; }</code></pre></div><p>Date on the &#039;black bar&#039;<br /></p><div class="codebox"><pre><code>.posts-default .published            { color: #fff; }</code></pre></div><p>Number of comments on the &#039;black bar&#039;<br /></p><div class="codebox"><pre><code>.posts-default .entry-comments     { color: #fff; }</code></pre></div><p><strong>11. Main background</strong></p><div class="codebox"><pre><code>#main                    { background: #fff; }</code></pre></div><p><strong>12. News Section (if you choose per line)</strong></p><p>Color of the category the posts are in.<br /></p><div class="codebox"><pre><code>.posts-line .entry-cat        { color: #fff;}</code></pre></div><p>Advanced: I do not want the category to be shown there. (Note: if you do this, the entry titles will shift to the left, so there won&#039;t be a blank space)<br /></p><div class="codebox"><pre><code>.posts-line .entry-cat        { display: none; }</code></pre></div><p>Entry titles<br /></p><div class="codebox"><pre><code>.posts-line a:link, .posts-line a:visited    { color: #fff; }</code></pre></div><p>Color of the comments<br /></p><div class="codebox"><pre><code>.posts-line .entry-comments    { color: #848485; }</code></pre></div><p>Advanced: I do not want to show the (the amount of / or lack of) comments <br /></p><div class="codebox"><pre><code>.posts-line .entry-comments    { display: none; }</code></pre></div><p><strong>13. Footer</strong></p><p>Color of the entire footer<br /></p><div class="codebox"><pre><code>#footer                    { background: #fff; }</code></pre></div><p>Color the text<br /></p><div class="codebox"><pre><code>#footer                     { color: #fff; }</code></pre></div><p>Color of &#039;About arras.theme<br /></p><div class="codebox"><pre><code>.arras                    { color: #fff !important; }</code></pre></div><p>This footer is a widgetspace too. You can change the appearance of the widget like part 7. of this turorial, just add #footer in front.<br />Example:<br /></p><div class="codebox"><pre><code>#footer .widgetcontent                { background: #fff; }</code></pre></div><p><strong>14. Quick preview</strong></p><p>Entry title<br /></p><div class="codebox"><pre><code>.posts-quick .entry-title a:link, .posts-default .entry-title a:visited    { color: #fff; }</code></pre></div><p>Entry summary<br /></p><div class="codebox"><pre><code>.posts-quick .entry-summary    { color: #fff; } </code></pre></div><p>Border around the image<br /></p><div class="codebox"><pre><code>.posts-quick .entry-thumbnails    { border: 5px solid #fff; }</code></pre></div><p>The things beneath have to be activated in the theme options, do this only if you are going to change the size of the thumbnails in the news section. These are by </p><p>default too small to handle date + comments. Make them as big as the normal quick preview size.</p><p>&#039;Black bar&#039;<br /></p><div class="codebox"><pre><code>.posts-quick .entry-meta    {  background: #fff; }</code></pre></div><p>Date on the &#039;black bar&#039;<br /></p><div class="codebox"><pre><code>.posts-quick .published    { color: #fff; }</code></pre></div><p>Number of comments on the &#039;black bar&#039;<br /></p><div class="codebox"><pre><code>.posts-quick .entry-comments { color: #fff; }</code></pre></div><p>Read More text<br /></p><div class="codebox"><pre><code>.posts-quick .quick-read-more a:link, .posts-quick .quick-read-more a:visited    { color: #fff; }</code></pre></div><p>Read More Background<br /></p><div class="codebox"><pre><code>.posts-quick .quick-read-more a:link, .posts-quick .quick-read-more a:visited    { background: #fff; }</code></pre></div><p>Read More border<br /></p><div class="codebox"><pre><code>.posts-quick .quick-read-more a:link, .posts-quick .quick-read-more a:visited    { border: 1px solid #fff; }</code></pre></div><p><strong>15. Older/Newer Entries</strong></p><p>Color of the older/newer entries (text)<br /></p><div class="codebox"><pre><code>.navigation a { color: #fff; }</code></pre></div><p>Color of the older/newer entries (background)<br /></p><div class="codebox"><pre><code>.navigation a { background: #fff; }</code></pre></div><p>Color of the older/newer entries (border)<br /></p><div class="codebox"><pre><code>.navigation a { border: 1px solid #fff;  }</code></pre></div><p><strong>EXTRA!</strong></p><p>&quot;I want the color to change when hovering the cursor of their mouse over something.&quot;</p><p>Yeah, me too. Just add :hover.</p><p>See this example:</p><div class="codebox"><pre><code>.widgetcontent                { background: #000; }
.widgetcontent:hover                { background: #fff; }</code></pre></div><p>Normally the widget in this example has a black background, when somebody moves their mouse over it it will change to white. You can virtually add this to any element. </p><p>But remember kids, less is sometimes better.</p>]]></description>
			<author><![CDATA[null@example.com (extatix)]]></author>
			<pubDate>Sat, 20 Mar 2010 17:55:28 +0000</pubDate>
			<guid>http://www.arrastheme.com/forums/topic942-142-tutorial-how-do-i-change-the-color-of-new-posts.html</guid>
		</item>
	</channel>
</rss>

