<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Arturo</title>
	<atom:link href="http://demos.bavotasan.com/arturo/feed/" rel="self" type="application/rss+xml" />
	<link>http://demos.bavotasan.com/arturo</link>
	<description>created by Themes by bavotasan.com</description>
	<lastBuildDate>Tue, 10 May 2011 17:16:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>WordPress 3.1 features</title>
		<link>http://demos.bavotasan.com/arturo/features/wordpress-3-0-features/</link>
		<comments>http://demos.bavotasan.com/arturo/features/wordpress-3-0-features/#comments</comments>
		<pubDate>Tue, 10 May 2011 12:24:56 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[background editor]]></category>
		<category><![CDATA[custom menus]]></category>
		<category><![CDATA[header image]]></category>
		<category><![CDATA[multi-site]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=62</guid>
		<description><![CDATA[Arturo takes advantage of many of the new features available in WordPress 3.1. You can create a custom menu, add a background image to the header section, select a specific color for your site background or use an image and so much more. Arturo is even built to be used with a Multi-Site network.]]></description>
			<content:encoded><![CDATA[<p><img src="http://demos.bavotasan.com/arturo/files/2010/12/froggy_new.jpg" alt="" title="froggy_new" width="600" height="260" class="aligncenter size-full wp-image-116" /></p>
<p>Arturo takes advantage of many of the new features available in WordPress 3.1. You can create a custom menu, add a background image to the header section, select a specific color for your site background or use an image and so much more. Arturo is even built to be used with a Multi-Site network.</p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/features/wordpress-3-0-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slideshow Options</title>
		<link>http://demos.bavotasan.com/arturo/tutorials/slideshow-options/</link>
		<comments>http://demos.bavotasan.com/arturo/tutorials/slideshow-options/#comments</comments>
		<pubDate>Mon, 09 May 2011 16:48:21 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[custom action]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=132</guid>
		<description><![CDATA[As of version 1.0.1, Arturo comes with three jQuery slideshows pre-installed. By default, the front page will display the Faderota slideshow, which fades from one image to the next. You can easily change this to the Scrollerota or Sliderota slideshow by just adding a simple piece of code to the Custom Actions editor. Here is [...]]]></description>
			<content:encoded><![CDATA[<p>As of version 1.0.1, Arturo comes with three jQuery slideshows pre-installed. By default, the front page will display the Faderota slideshow, which fades from one image to the next. You can easily change this to the Scrollerota or Sliderota slideshow by just adding a simple piece of code to the Custom Actions editor.</p>
<p>Here is the <code>arturo_slideshow()</code> code and all of its arguments:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$args</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
	<span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'faderota'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'cat'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'postnum'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">4</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'width'</span> <span style="color: #339933;">=&gt;</span> theme_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'content_width'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'height'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">260</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'excerpt'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #cc66cc;">35</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
arturo_slideshow<span style="color: #009900;">&#40;</span><span style="color: #000088;">$args</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Every argument can be customized for your needs. Here is the block of code I used to change the demo to display the Scrollerota slideshow:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_index_top'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'arturo_index_top_slideshow'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_index_top'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'new_index_top_slideshow'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> new_index_top_slideshow<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$paged</span><span style="color: #339933;">;</span>
   <span style="color: #000088;">$args</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
      <span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'scrollerota'</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'cat'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'1'</span>
   <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>is_home<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$paged</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span> arturo_slideshow<span style="color: #009900;">&#40;</span><span style="color: #000088;">$args</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Notice that I have added a conditional statement that will only display the slideshow on the front page and no subsequent pages. </p>
<p>If I would have wanted to add the Sliderota plugin instead, it would have looked like this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_index_top'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'arturo_index_top_slideshow'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_index_top'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'new_index_top_slideshow'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> new_index_top_slideshow<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$paged</span><span style="color: #339933;">;</span>
   <span style="color: #000088;">$args</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
      <span style="color: #0000ff;">'type'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'sliderota'</span><span style="color: #339933;">,</span>
      <span style="color: #0000ff;">'cat'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'1'</span>
   <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>is_home<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$paged</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span> arturo_slideshow<span style="color: #009900;">&#40;</span><span style="color: #000088;">$args</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/tutorials/slideshow-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Full Width Post</title>
		<link>http://demos.bavotasan.com/arturo/videos/a-full-width-post/</link>
		<comments>http://demos.bavotasan.com/arturo/videos/a-full-width-post/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 17:15:26 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=59</guid>
		<description><![CDATA[This is an example of a full width post. All you need to do is select &#8220;Full Width&#8221; in the Layout panel when you are on the post edit screen in the wp-admin. The Layout panel will be on the right, usually below the Post Tags panel. With &#8220;Full Width&#8221; selected, all sidebars will disappear [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://demos.bavotasan.com/arturo/files/2010/12/fullwidth.jpg" alt="" title="fullwidth" width="297" height="107" class="alignright size-full wp-image-60" />This is an example of a full width post. All you need to do is select &#8220;Full Width&#8221; in the Layout panel when you are on the post edit screen in the wp-admin. The Layout panel will be on the right, usually below the Post Tags panel. </p>
<p>With &#8220;Full Width&#8221; selected, all sidebars will disappear and your post or page will fit the entire width of your site.</p>
<p>You can even display a full width video if you want.</p>
<p><object width="900" height="531"><param name="movie" value="http://www.youtube.com/v/L9szn1QQfas?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/L9szn1QQfas?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="900" height="531"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/videos/a-full-width-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ad Space</title>
		<link>http://demos.bavotasan.com/arturo/tutorials/ad-space/</link>
		<comments>http://demos.bavotasan.com/arturo/tutorials/ad-space/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 16:57:30 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[custom action]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=46</guid>
		<description><![CDATA[If you take a look at the header and the footer, you will see two optional ad spaces available throughout the whole site. These spaces will take HTML or JavaScript, so you can add your AdSense or ad server code, or even just a straight static link and image using HTML. If you wish to [...]]]></description>
			<content:encoded><![CDATA[<p>If you take a look at the header and the footer, you will see two optional ad spaces available throughout the whole site. These spaces will take HTML or JavaScript, so you can add your AdSense or ad server code, or even just a straight static link and image using HTML. </p>
<p>If you wish to add more ad space to your site, it is easy using Custom Actions. </p>
<p>Here is a quick tutorial on how you can add an AdSense spot at the top of your first sidebar:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> adsense_sidebar_spot<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
   <span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;side-widget&quot;</span><span style="color: #339933;">&gt;</span>
      <span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
            google_ad_client <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;XXXXXXX&quot;</span><span style="color: #339933;">;</span>
            google_ad_width <span style="color: #339933;">=</span> <span style="color: #cc66cc;">300</span><span style="color: #339933;">;</span>
            google_ad_height <span style="color: #339933;">=</span> <span style="color: #cc66cc;">250</span><span style="color: #339933;">;</span>
            google_ad_format <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;300x250_as&quot;</span><span style="color: #339933;">;</span>
            google_ad_type <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;text_image&quot;</span><span style="color: #339933;">;</span>
            google_color_border <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;FFFFFF&quot;</span><span style="color: #339933;">;</span>
            google_color_bg <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;0000FF&quot;</span><span style="color: #339933;">;</span>
            google_color_link <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;FFFFFF&quot;</span><span style="color: #339933;">;</span>
            google_color_text <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;000000&quot;</span><span style="color: #339933;">;</span>
            google_color_url <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;008000&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span>
      <span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
   <span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_sidebar_top'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'adsense_sidebar_spot'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Just place the above code into your Custom Actions editor and voila!</p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/tutorials/ad-space/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Simple Aside</title>
		<link>http://demos.bavotasan.com/arturo/other/a-simple-aside/</link>
		<comments>http://demos.bavotasan.com/arturo/other/a-simple-aside/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 16:39:59 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=127</guid>
		<description><![CDATA[Arturo is one of the easiest and most advanced theme framework for WordPress ever. Anything is possible once you start to use the custom action hooks.]]></description>
			<content:encoded><![CDATA[<p>Arturo is one of the easiest and most advanced theme framework for WordPress ever. Anything is possible once you start to use the custom action hooks.</p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/other/a-simple-aside/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full Sized Image</title>
		<link>http://demos.bavotasan.com/arturo/images/full-sized-image/</link>
		<comments>http://demos.bavotasan.com/arturo/images/full-sized-image/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 17:31:08 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Images]]></category>
		<category><![CDATA[excerpt box]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=68</guid>
		<description><![CDATA[The above image is actually 722pixels wide, but it adjusts to fit perfectly inside your main content box. To make the full size image appear on the front page, you just need to set the post format (new in WordPress 3.1) to &#8220;Image&#8221;.]]></description>
			<content:encoded><![CDATA[<p><img src="http://demos.bavotasan.com/arturo/files/2010/12/water-drops.jpg" alt="" title="water-drops" width="722" height="480" class="alignnone size-full wp-image-69" /></p>
<p>The above image is actually 722pixels wide, but it adjusts to fit perfectly inside your main content box. To make the full size image appear on the front page, you just need to set the post format (new in WordPress 3.1) to &#8220;Image&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/images/full-sized-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Framework Guides</title>
		<link>http://demos.bavotasan.com/arturo/tutorials/framework-guides/</link>
		<comments>http://demos.bavotasan.com/arturo/tutorials/framework-guides/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 18:04:14 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[action]]></category>
		<category><![CDATA[arturo]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[custom action]]></category>
		<category><![CDATA[framework guides]]></category>
		<category><![CDATA[hook]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=84</guid>
		<description><![CDATA[Getting started with Custom Actions might seem a little daunting, so we decided to include some handy Framework Guides to show you all of the actions that you can hook into. Just go to the Layout Options and you will see a checkbox at the bottom of the Main Layout tab. Check it off and [...]]]></description>
			<content:encoded><![CDATA[<p>Getting started with Custom Actions might seem a little daunting, so we decided to include some handy Framework Guides to show you all of the actions that you can hook into. Just go to the Layout Options and you will see a checkbox at the bottom of the Main Layout tab. Check it off and your site will look something like this:</p>
<p><a href="http://demos.bavotasan.com/arturo/files/2010/12/arturo_framework_guides.jpg"><img src="http://demos.bavotasan.com/arturo/files/2010/12/arturo_framework_guides.jpg" alt="" title="arturo_framework_guides" width="1026" height="3752" class="aligncenter size-full wp-image-110" /></a></p>
<p>If you navigation through your site once the guides are turned on, you will see all of the different actions you can hook into to customize Arturo.</p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/tutorials/framework-guides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Actions</title>
		<link>http://demos.bavotasan.com/arturo/tutorials/custom-actions/</link>
		<comments>http://demos.bavotasan.com/arturo/tutorials/custom-actions/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 16:42:38 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[custom action]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[remove]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=33</guid>
		<description><![CDATA[Arturo is a simple framework for WordPress, built around Custom Actions that allow you to control every area of the site, so you can customize it to your exact requirements. Adding or removing elements is as easy as using add_action() and remove_action(). These are two core WordPress functions that help make Arturo super easy to [...]]]></description>
			<content:encoded><![CDATA[<p>Arturo is a simple framework for WordPress, built around Custom Actions that allow you to control every area of the site, so you can customize it to your exact requirements. Adding or removing elements is as easy as using <code>add_action()</code> and <code>remove_action()</code>. These are two core WordPress functions that help make Arturo super easy to personalize to your liking.</p>
<p>Here are some easy examples to get your started.</p>
<p><strong>How to move the navigation menu to the top of the header:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_header_bottom'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'arturo_navmenu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_header_top'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'arturo_navmenu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><strong>How to remove the &#8220;Read More&#8221; link from the index page:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_index_post_bottom'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'arturo_readmore'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><strong>How to remove the author box on single posts:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'arturo_single_bottom'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'arturo_authorbox'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Just add the above code to the Custom Actions editor to see it work.</p>
<p>We have also included some Framework Guides that you can switch on and off in the Layout Options. With the guides on, you can see every single action that you can hook into to customize Arturo.</p>
<p>Check out the <a href="http://themes.bavotasan.com/support/">Support Forum</a> for tons more.</p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/tutorials/custom-actions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A YouTube Video</title>
		<link>http://demos.bavotasan.com/arturo/videos/a-youtube-video/</link>
		<comments>http://demos.bavotasan.com/arturo/videos/a-youtube-video/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 17:28:26 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=65</guid>
		<description><![CDATA[This is a YouTube video embed that was added to a post. To make an embedded video appear on the front page, you need select &#8220;Video&#8221; as your post format.]]></description>
			<content:encoded><![CDATA[<p>This is a YouTube video embed that was added to a post.</p>
<p><object width="570" height="345"><param name="movie" value="http://www.youtube.com/v/QkoVf8wN0J0?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/QkoVf8wN0J0?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="570" height="345"></embed></object></p>
<p>To make an embedded video appear on the front page, you need select &#8220;Video&#8221; as your post format. </p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/videos/a-youtube-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Design Options</title>
		<link>http://demos.bavotasan.com/arturo/features/easy-design-options/</link>
		<comments>http://demos.bavotasan.com/arturo/features/easy-design-options/#comments</comments>
		<pubDate>Sun, 10 Oct 2010 16:30:58 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://demos.bavotasan.com/arturo/?p=29</guid>
		<description><![CDATA[Sign in to your wp-admin and take a look all the way on the bottom left for Magazine Flow&#8217;s theme option panel. Click on the Design Options link to start customizing the look of your site. You can change the color of many different elements on your site, including fonts, the sidebar, your navigation menu [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://demos.bavotasan.com/arturo/files/2010/12/plastic-color.jpg" alt="" title="plastic-color" width="225" height="150" class="alignright size-full wp-image-30" />Sign in to your wp-admin and take a look all the way on the bottom left for Magazine Flow&#8217;s theme option panel. Click on the Design Options link to start customizing the look of your site. You can change the color of many different elements on your site, including fonts, the sidebar, your navigation menu and your header. You can even select from almost twenty different fonts for your text.And if your text is too small or too big, just change the font size accordingly.</p>
]]></content:encoded>
			<wfw:commentRss>http://demos.bavotasan.com/arturo/features/easy-design-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

