<?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>Digital Raindrops &#187; Wedding Theme</title>
	<atom:link href="http://digitalraindrops.net/demo/wordpress/cms-lite/tag/wedding-theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalraindrops.net/demo/wordpress/cms-lite</link>
	<description>quality free wordpress themes and tutorials for your blog, themes download, wordpress templates, download wordpress theme, wordpress template</description>
	<lastBuildDate>Sat, 01 May 2010 20:56:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Adding the cu3er Slideshow</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 16:49:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[cu3er]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Wedding Theme]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/</guid>
		<description><![CDATA[There are a number of slideshows you can use with your WordPress blog but these are often required in the main body of the blog page, in this tutorial we will walk you through installing the cu3er Slideshow as used in our wedding theme. We have used this plugin in the our wedding theme, the [...]]]></description>
			<content:encoded><![CDATA[<p>There are a number of slideshows you can use with your WordPress blog but these are often required in the main body of the blog page, in this tutorial we will walk you through installing the cu3er Slideshow as used in our wedding theme.</p>
<p><span id="more-450"></span>We have used this plugin in the our wedding theme, the cu3er slideshow  <a href="http://wordpress.org/extend/plugins/cu3er-post-elements/">WordPress plugin</a> from <a href="http://18elements.com/tools/cu3er-post-elements">18Elements</a> uses a category to feed the display, you can view: <a href="http://digitalraindrops.net/demo/wordpress/wedding-theme/">The Wedding Theme</a> here.</p>
<p>To have the slideshow embedded in the home page we cannot use a sidebar widget so you will have to add a line of code to the home page, this tutorial will use a 2.4 version theme created with the Artisteer template maker.</p>
<h2>Stylesheet</h2>
<p>We need to add a style to the stylesheet for our slideshow container, as we want to pad the slideshow, add borders, change margins to suit our theme, to start we need to open our <strong>style.css</strong> and find these <strong>two</strong> style blocks  making a note of the width settings, this will be used to calculate your slideshow width.</p>
<pre class="brush: css; title: ;">
/* begin Layout */
.art-content-layout
{
 display: table;
 padding: 0;
 border: none;
 width: 996px;
}

/* begin LayoutCell, content */
.art-content-layout .art-content
{
 width: 75%;
}
</pre>
<p>We now know the width of our theme and we can calculate the width of our slideshow 996px * 75% =  747px we will be adding a nice left and right margin of 25px and padding 5px to suit our theme, different themes will need adjusting, so our div width = 747 &#8211; 60 =  687px we rounded this to 685px to suit our theme.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/cu3er-2.jpg"><img class="alignnone size-full wp-image-453" title="cu3er-2" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/cu3er-2.jpg" alt="" width="700" height="336" /></a></p>
<p>Next step open our <strong>demo-custom.css</strong> or <strong>style.css</strong> file and paste in the code below.</p>
<pre class="brush: css; title: ;">
/* begin LayoutCell, sidebar1 */
.art-content-layout .demo-slideshow
{
 margin-top: 7px;
 margin-bottom: 7px;
 margin-left: 25px;
 margin-right: 25px;
 padding: 5px;
 width: 685px;
 border: dotted 2px #D1D1D1;
}
</pre>
<h2>Include file</h2>
<p>Next step is to create an include php file for our Slideshow which will be called from the index.php, copy the code below and paste into a new text editor file and save this as <strong>demo-slideshow.php</strong> .</p>
<pre class="brush: php; title: ;">
&lt;div class=&quot;demo-slideshow&quot;&gt;
 &lt;div class=&quot;inner&quot;&gt;
&lt;!-- cu3er Slideshow Start --&gt;
 &lt;?php if ( function_exists('install_cu3er') )  { install_cu3er(); } ?&gt;
&lt;!-- cu3er Slideshow End --&gt;
 &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>The last code step is to add a call to include our new file in our <strong>home.php</strong> or <strong>index.php</strong> or any other page file we may want the gallery on, find this line  <strong>&lt;div class=&#8221;art-layout-cell art-content&#8221;&gt;</strong> and insert the code below on the next line.</p>
<pre class="brush: php; title: ;">
&lt;!-- demo Slideshow Start --&gt;
&lt;?php if (file_exists(TEMPLATEPATH. '/demo-slideshow.php')) include(TEMPLATEPATH. '/demo-slideshow.php'); ?&gt;
&lt;!-- demo Slideshow End --&gt;
</pre>
<h2>Cu3er Setup</h2>
<p>We can now adjust the settings from Admin &gt; Settings &gt; Cu3er, enter the width and height to match our theme, we have worked out the width from the two values we noted earlier, and you can <a href="http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/">suppress the slideshow </a>category by following the other tutorial on this website.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/cu3er1.jpg"><img style="border: 0px" title="cu3er-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/cu3er1_thumb.jpg" border="0" alt="cu3er-1" width="701" height="253" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+the+cu3er+Slideshow&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/&amp;notes=There%20are%20a%20number%20of%20slideshows%20you%20can%20use%20with%20your%20WordPress%20blog%20but%20these%20are%20often%20required%20in%20the%20main%20body%20of%20the%20blog%20page%2C%20in%20this%20tutorial%20we%20will%20walk%20you%20through%20installing%20the%20cu3er%20Slideshow%20as%20used%20in%20our%20wedding%20theme.%0D%0A%0D%0AWe%20have%20used%20this%20plugin%20in%20the%20our%20wedding%20theme%2C%20the%20cu3er&amp;short_link=http://b2l.me/hjmqg&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
</ul><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/16/adding-the-cu3er-slideshow/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

