<?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>WooThemes &#187; VibrantCMS</title>
	<atom:link href="http://www.woothemes.com/demo/vibrantcms/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.woothemes.com</link>
	<description>Premium WordPress Themes</description>
	<lastBuildDate>Thu, 11 Mar 2010 11:07:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding Breadcrumbs to VibrantCMS and OverEasy</title>
		<link>http://www.woothemes.com/2008/12/adding-breadcrumbs-to-vibrantcms-and-overeasy/</link>
		<comments>http://www.woothemes.com/2008/12/adding-breadcrumbs-to-vibrantcms-and-overeasy/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 12:20:05 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Over Easy]]></category>
		<category><![CDATA[VibrantCMS]]></category>

		<guid isPermaLink="false">http://www.woothemes.com/?p=396</guid>
		<description><![CDATA[This tutorial was written by one our awesome forum ninjas &#8211; Jordan Hatch.
Both VibrantCMS and Over Easy are themes which turn WordPress into a Content Management System. Using a plugin and some template hacking, we&#8217;re going to integrate breadcrumbs&#8230;]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-207" style="float: right;" title="WooThemes Ninja" src="http://www.woothemes.com/wp-content/uploads/2008/09/woo_ninja.png" alt="" width="128" height="128" /><strong>This tutorial was written by one our awesome forum ninjas &#8211; Jordan Hatch.</strong></p>
<p>Both <a href="http://www.woothemes.com/2008/06/vibrantcms/">VibrantCMS</a> and <a href="http://www.woothemes.com/2008/10/overeasy/">Over Easy</a> are themes which turn WordPress into a Content Management System. Using a plugin and some template hacking, we&#8217;re going to integrate breadcrumbs into these themes.</p>
<p>First, you&#8217;ll need to download and install the <a href="http://wordpress.org/extend/plugins/breadcrumbs/">Yoast Breadcrumbs</a> plugin, and you can configure it in the Settings menu. It&#8217;s quite simple, and gives you a lot of customisation over what is displayed on your site. Time to get into some coding.</p>
<h3>Adding the Breadcrumbs</h3>
<p>There are quite a few files we will need to modify to add in the breadcrumbs. We will be adding the same lines of code to each of the following files:</p>
<ul>
<li>archive.php</li>
<li>page.php</li>
<li>single.php</li>
<li>tag.php</li>
</ul>
<p>Let&#8217;s open <em>archive.php</em> and add the breadcrumbs to that file. </p>
<p>If you are using <strong>VibrantCMS</strong>, you will need to find this line:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;leftcontent&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;grid_10&quot;</span><span style="color: #339933;">&gt;</span></pre></div></div>

<p>If you are using <strong>OverEasy</strong>, then you will need to look for this line:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><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;spacer&quot;</span><span style="color: #339933;">&gt;</span></pre></div></div>

<p>After, add:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;breadcrumbs&quot;&gt;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'yoast_breadcrumb'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> yoast_breadcrumb<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;p id=&quot;breadcrumbs&quot;&gt;'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> 
&lt;/div&gt;</pre></div></div>

<p>Upload to your site and view any category or archive page, and you should see the breadcrumbs showing at the top of your page. If not, go back and check that you have done the steps correctly.</p>
<p>Now, you will need to add the breadcrumbs code to the other three files mentioned above. You should add it in the same place as before.</p>
<h3>Styling the Breadcrumbs</h3>
<p>At this point, the breadcrumbs have no styling at all. However, we have given our code we added a <em>class</em> attribute, and so we can add styling to change the link colours, the font size, positioning, and lots more.</p>
<p>To do this, we will need to change <em>style.css</em> and add the following lines to the end:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* ---- BREADCRUMBS ---- */</span>
&nbsp;
<span style="color: #6666ff;">.breadcrumbs</span> <span style="color: #00AA00;">&#123;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>For example, if we would like to change the size of the text to 12px, we would change the CSS to this:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.breadcrumbs</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>You could even add a border to your breadcrumbs:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.breadcrumbs</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">12px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#ccccff</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>You can experiment with CSS styling to completely transform how your breadcrumbs look. The plugin is completely flexible too, and so you can change what text is displayed and where the breadcrumbs are shown.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.woothemes.com/2008/12/adding-breadcrumbs-to-vibrantcms-and-overeasy/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Customizing The Featured Panel</title>
		<link>http://www.woothemes.com/2008/08/customizing-the-featured-panel/</link>
		<comments>http://www.woothemes.com/2008/08/customizing-the-featured-panel/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 21:48:51 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[VibrantCMS]]></category>

		<guid isPermaLink="false">http://www.woothemes.com/?p=176</guid>
		<description><![CDATA[This is a guest post by Josh Farkas, King Ninja at Cubicle Ninjas. It has been modified from it&#8217;s original version to suit the newest version (v1.1) of VibrantCMS.

 
WooThemes are wonderful because they look beautiful out of the box.&#8230;]]></description>
			<content:encoded><![CDATA[<p><em>This is a guest post by Josh Farkas, King Ninja at <a href="http://cubicleninjas.com/">Cubicle Ninjas</a>. It has been modified from it&#8217;s original version to suit the newest version (v1.1) of VibrantCMS.</em></p>
<p style="text-align: center;"><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/cubicleninjaswebdesignillustration.jpg"><img class="tutorial-image" title="cubicleninjaswebdesignillustration" src="http://cubicleninjas.com/wp-content/uploads/2008/08/cubicleninjaswebdesignillustration.jpg" alt="" width="450" height="353" /></a></p>
<p><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/cubicleninjasdesignillustration.jpg"> </a></p>
<p><strong>WooThemes are wonderful because they look beautiful out of the box.</strong> But if you&#8217;d prefer to customize them to your taste they&#8217;ve built-in the tools to make that very easy. Here are a few tips I learned first-hand when I built our new <a href="http://cubicleninjas.com" target="_blank">Cubicle Ninja&#8217;s website</a> with the VibrantCMS theme.</p>
<p><strong>Let&#8217;s pretend we&#8217;re launching a fun new website about an upcoming war between kittens and mankind.</strong> We&#8217;ve installed Wordpress, <a href="http://www.woothemes.com/support/theme-documentation/vibrantcms/#4">followed the detailed directions</a> provided by the WooThemes team to install the VibrantCMS theme, and we were ready to add in our own imagery.</p>
<p style="text-align: center;"><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/overflow.jpg"><img class="tutorial-image" title="overflow" src="http://cubicleninjas.com/wp-content/uploads/2008/08/overflow.jpg" alt="" width="450" height="378" /></a></p>
<p><strong>Using Large Images</strong></p>
<p>By default the featured post area will grow vertically to match your image, <em>but horizontally, your image will overflow into the next featured panel</em>. Take a look at the left side of the image above as an example.<strong></strong></p>
<p><strong>Is there an easy way to add in image greater then 340 pixels wide without this issue?</strong></p>
<p>1. Go to Manage > Pages and locate the page with the problem image.</p>
<p>2. Find &#8220;VibrantCMS Custom Settings&#8221; where we&#8217;d originally placed our image URL. Located here are two fields, &#8220;Top&#8221; and &#8220;Left&#8221;. We will use these to adjust where our image is located.</p>
<p style="text-align: center;"><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/left.jpg"><img class="tutorial-image" title="left" src="http://www.woothemes.com/wp-content/uploads/2008/08/custom-vibrant.gif" alt="" /></a></p>
<p>3. Place a value you&#8217;d like to move your image into the field labeled &#8220;Left&#8221;. For example -50 moves your image 50 pixels to the left.</p>
<p>4. Hit save to update this featured panel.</p>
<p>5. View your page to see how you did. You can keep guessing and checking until your image fits perfectly.</p>
<p style="text-align: center;"><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/top.jpg"><img class="tutorial-image" title="top" src="http://cubicleninjas.com/wp-content/uploads/2008/08/top.jpg" alt="</p>
<p>&#8221; width=&#8221;450&#8243; height=&#8221;325&#8243; /></a></p>
<p><strong>Using Small Images</strong></p>
<p>What if we have the opposite problem: We want to use a very small image but don&#8217;t want it placed against the top?</p>
<p>1. Go to Manage > Pages and locate the page with the problem image.</p>
<p>2. Find &#8220;VibrantCMS Custom Settings&#8221;   where we&#8217;d originally placed our image URL. Located here are two fields, &#8220;Top&#8221; and &#8220;Left&#8221;. We will use these to adjust where our image is located.</p>
<p>3. Place a value you&#8217;d like to move your image down into the field labeled &#8220;Top&#8221;. Using -50 moves your image up, 50 moves your image down.</p>
<p>4 . Hit save to update this featured panel.</p>
<p>5. View your page to see how you did. You can keep guessing and checking until your image floats where you like it.</p>
<p>We can even combine using &#8220;Top&#8221; and &#8220;Left to move the image to the center. If we were to place an image in the center it will overlap your text, but it will be behind your buttons.</p>
<p style="text-align: center;"><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/bg.jpg"><img class="tutorial-image" title="bg" src="http://cubicleninjas.com/wp-content/uploads/2008/08/bg.jpg" alt="" width="450" height="378" /></a></p>
<p><strong>Editing the Background</strong></p>
<p>We now have our custom images snuggly in place.   Would it be possible to customize our background color or image?</p>
<p>Absolutely. As a matter of fact, if you can customize this you&#8217;ve learned how to customize any element of your theme &#8211; the same rules apply. We&#8217;ll be using an amazing plug-in for Firefox that helps us see what we&#8217;ll need to edit. This tool is called Firebug. <a href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">Click here to install your copy before we begin.</a></p>
<p>1. With Firebug, finding out what the code is behind any part of our website is as easy as clicking. Let&#8217;s open Firebug by going to Tool>Firebug>Open in New Window within Firefox.</p>
<p style="text-align: center;"><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/inspect.jpg"><img class="tutorial-image" title="inspect" src="http://cubicleninjas.com/wp-content/uploads/2008/08/inspect.jpg" alt="" width="450" height="157" /></a></p>
<p>2. At the top-left of Firebug there is an menu item called &#8220;Inspect&#8221;. Let&#8217;s click this.</p>
<p>3. As we run our mouse over the page we can see a blue outline appearing. These are the hidden elements of your webpage. If we mouse-over the top of our background and click, we see the specific code that controls this area.</p>
<p style="text-align: center;"><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/firebug.jpg"><img class="tutorial-image" title="firebug" src="http://cubicleninjas.com/wp-content/uploads/2008/08/firebug.jpg" alt="" width="450" height="256" /></a></p>
<p>4. In Firebug&#8217;s top right corner it displays where this code is located. This class is located in a file called &#8220;pink.css&#8221;. All of the template variations have their own CSS file. This controls the look and feel for that specific style. Use a FTP program to find the folder where these CSS files are located.</p>
<p>It should look close to this:<br />
www.yourwebsitehere.com/wp-content/themes/vibrantcms/styles/</p>
<p>5. Next, use a text editor to open the &#8220;pink.css&#8221; file.</p>
<p>6. Once inside look for an entry that matches our Firebug name, &#8220;#featured&#8221;. It should look like this:</p>
<p>#featured  {<br />
background: #ffc0d4 url(pink/featuredbg.jpg) repeat-x top left;<br />
}</p>
<p>7. Looking at this class we can see how quickly we can modify our featured area:<strong><br />
&#8220;#FFC0D4&#8243;</strong> is the pink in our background, by changing this value we will modify the color<br />
<strong>&#8220;url(pink/featuredbg.jpg)&#8221;</strong> is referencing the gradient image across the top of the featured area<br />
<strong>&#8220;repeat-x scroll left top&#8221;</strong> tells the image to repeat horizontally and start at the top left</p>
<p>8. Let&#8217;s say we like our background gradient image, but we&#8217;d like there to be repeating text in this area. This would be as simple as finding the referenced image above and replacing it. (If you&#8217;re using a different style then Pink, your featured background image will be located in the folder name of that style.)</p>
<p>9. We can find this image at:<br />
www.yourwebsitehere.com/wp-content/themes/vibrantcms/styles/pink/featuredbg.jpg</p>
<p>10. Edit  and replace the old version of &#8220;featuredbg.jpg&#8221;. Your website now has a new repeating background image.</p>
<p style="text-align: center;"><a href="http://cubicleninjas.com/wp-content/uploads/2008/08/background.jpg"><img class="tutorial-image" title="background" src="http://cubicleninjas.com/wp-content/uploads/2008/08/background.jpg" alt="" width="450" height="359" /></a></p>
<p><strong>And that&#8217;s it! </strong>We&#8217;ve only begun editing our <em>Kitten Wars</em> website, and it looks very rough, but you can see how quickly we could change almost every aspect of the featured panel. And with your knowledge of Firebug exploring the remainder of your website should be that much easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.woothemes.com/2008/08/customizing-the-featured-panel/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
