<?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>bellafaith graphic &#38; web design studio &#187; Blog</title>
	<atom:link href="http://www.bellafaithdesign.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bellafaithdesign.com</link>
	<description></description>
	<lastBuildDate>Fri, 16 Jul 2010 18:48:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Enabling :hover for Cufon in Prestashop</title>
		<link>http://www.bellafaithdesign.com/2010/07/enabling-hover-for-cufon-in-prestashop/</link>
		<comments>http://www.bellafaithdesign.com/2010/07/enabling-hover-for-cufon-in-prestashop/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 17:24:17 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[techie geek code stuff]]></category>
		<category><![CDATA[code fixes]]></category>
		<category><![CDATA[code snippets]]></category>
		<category><![CDATA[Cufon and PrestaShop]]></category>
		<category><![CDATA[JavaScript in PrestaShop]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=729</guid>
		<description><![CDATA[In the midst of creating an online store, using the Prestashop e-commerce shopping cart, I ran into a little error while using Cufon (which generates fonts &#38; renders them in the browser with JavaScript). Using Cufon, at it&#8217;s very basic level (of replacing text with graphics), was fairly simple to set up in a Prestashop [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In the midst of creating an online store, using the <a href="http://www.prestashop.com/">Prestashop</a> e-commerce shopping cart, I ran into a little error while using <a href="http://cufon.shoqolate.com/generate/">Cufon</a> (which generates fonts &amp; renders them in the browser with JavaScript). Using <a href="http://cufon.shoqolate.com/generate/">Cufon</a>, at it&#8217;s very basic level (of replacing text with graphics), was fairly simple to set up in a Prestashop theme. However, when I went to enable the :hover option for a replaced element, with the normal code structure, the e-commerce site would load a blank page.</p>
<p>Normal usage:</p>
<pre class="brush: jscript;">
&lt;script type=&quot;text/javascript&quot;&gt;
Cufon.set('fontFamily', 'Vintage');
Cufon.replace('h4');
Cufon.replace('h2 a', {
	hover: true
});
 &lt;/script&gt;
</pre>
<p>I struggled with finding a solution to this last night. I tried removing the line breaks around <strong>hover:true</strong>, adding quotes around different areas, deleting the brackets, but nothing worked. Then, this morning, I decided to google the problem, and within minutes, I found the solution in the <a href="http://www.prestashop.com/forums/">Prestashop forums</a>. It was an <em>ah-ha</em> moment, when I found the solution. It was so simple, yet nothing I would have tried on my own&#8230; </p>
<p><strong>The Solution:</strong> Surround the JavaScript code with <strong>{literal}</strong> tags.</p>
<p>Like so:</p>
<pre class="brush: jscript;">
&lt;script type=&quot;text/javascript&quot;&gt;
{literal}
Cufon.set('fontFamily', 'Vintage');
Cufon.replace('h4');
Cufon.replace('h2 a', {
	hover: true
});
{/literal}
 &lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/07/enabling-hover-for-cufon-in-prestashop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>another way to import your blog posts in to your facebook profile</title>
		<link>http://www.bellafaithdesign.com/2010/07/another-way-to-import-your-blog-posts-in-to-your-facebook-profile/</link>
		<comments>http://www.bellafaithdesign.com/2010/07/another-way-to-import-your-blog-posts-in-to-your-facebook-profile/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 13:00:20 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[FB blog/rss url not valid error]]></category>
		<category><![CDATA[FB import delay]]></category>
		<category><![CDATA[fb tutorial]]></category>
		<category><![CDATA[import blog posts to facebook profile]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=705</guid>
		<description><![CDATA[Are you tired of the posting delay when you use Facebook&#8217;s Blog/RSS import function? Sometimes it can be days or even weeks before Facebook will import your blog posts. Sure, there is a way to manually update your Facebook notes, but don&#8217;t you have enough things to do? Thankfully, there is a Facebook application that you can use to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Are you tired of the posting delay when you use Facebook&#8217;s Blog/RSS import function? Sometimes it can be days or even weeks before Facebook will import your blog posts. Sure, there is a way to <a href="http://www.bellafaithdesign.com/2010/05/facebook-import-your-blog-posts/">manually update your Facebook notes</a>, but don&#8217;t you have enough things to do?</p>
<p>Thankfully, there is a Facebook application that you can use to import your blog posts where you determine how often it checks your blog for new posts. It is RSS Graffiti. I already did a <a href="http://www.bellafaithdesign.com/2010/07/add-your-blog-posts-to-your-facebook-page-automatically">tutorial on how to use RSS Graffiti for your business or organization Facebook page</a>, but today I&#8217;ll show you how to use it for your personal profile. It is similar to using RSS Graffiti for your pages, but has less steps.</p>
<p>[*This <em>may</em> even be a solution for those of you who are getting the "The blog/rss url you entered is not valid. Please verify and try again." error when using the built-in Facebook Blog/RSS import function.]</p>
<p>Let&#8217;s get started&#8230;</p>
<p>Go to: <a href="http://apps.facebook.com/rssgraffiti/">http://apps.facebook.com/rssgraffiti/</a> [you will need to be logged in to Facebook]</p>
<div id="attachment_706" class="wp-caption aligncenter" style="width: 540px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/click_here_to_grant_permission.png"><img class="size-full wp-image-706 " title="click_here_to_grant_permission" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/click_here_to_grant_permission.png" alt="" width="540" height="435" /></a>
	<p class="wp-caption-text">Click on &quot;Click here to grant this permission&quot;</p>
</div>
<div id="attachment_707" class="wp-caption aligncenter" style="width: 529px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/allow_001.png"><img class="size-full wp-image-707 " title="allow_001" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/allow_001.png" alt="" width="529" height="248" /></a>
	<p class="wp-caption-text">Click &quot;Allow&quot;</p>
</div>
<div id="attachment_708" class="wp-caption aligncenter" style="width: 532px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/click_here_to_allow_publishing_001.png"><img class="size-full wp-image-708 " title="click_here_to_allow_publishing_001" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/click_here_to_allow_publishing_001.png" alt="" width="532" height="255" /></a>
	<p class="wp-caption-text">Click &quot;Click here to allow publishing&quot;</p>
</div>
<div id="attachment_709" class="wp-caption aligncenter" style="width: 526px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/allow_002.png"><img class="size-full wp-image-709 " title="allow_002" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/allow_002.png" alt="" width="526" height="245" /></a>
	<p class="wp-caption-text">Click &quot;Allow&quot;</p>
</div>
<div id="attachment_710" class="wp-caption aligncenter" style="width: 529px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/add_feed_001.png"><img class="size-full wp-image-710 " title="add_feed_001" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/add_feed_001.png" alt="" width="529" height="166" /></a>
	<p class="wp-caption-text">Click &quot;Add feed&quot;</p>
</div>
<div id="attachment_711" class="wp-caption aligncenter" style="width: 538px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/feed_url_name_and_save.png"><img class="size-full wp-image-711 " title="feed_url_name_and_save" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/feed_url_name_and_save.png" alt="" width="538" height="431" /></a>
	<p class="wp-caption-text">Add your feed address in &quot;Feed URL&quot;, a title for your feed in &quot;Feed Name&quot; and click &quot;Save&quot; - there are other options if you scroll down, but these are the only ones you need. By default, it will check your blog every 30 minutes for new posts and each post will include the title, a photo and an excerpt. </p>
</div>
<p>That&#8217;s it for setting up RSS Graffiti. However, if you were previously using the built-in Blog/RSS import, you will need to disable it. Otherwise, whenever the Facebook importer does decide to finally import your blog posts, you will have double blog posts on your profile. Maybe you&#8217;re okay with that, but your FB friends may not be as happy about it. So here&#8217;s how you disable the built-in FB importer:</p>
<div id="attachment_712" class="wp-caption aligncenter" style="width: 550px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/options.png"><img class="size-full wp-image-712" title="options" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/options.png" alt="" width="550" height="177" /></a>
	<p class="wp-caption-text">Go to your Facebook profile &amp; in the middle under where you add your status updates, click on &quot;Options&quot;</p>
</div>
<div id="attachment_713" class="wp-caption aligncenter" style="width: 546px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/settings.png"><img class="size-full wp-image-713" title="settings" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/settings.png" alt="" width="546" height="35" /></a>
	<p class="wp-caption-text">Click on &quot;Settings&quot;</p>
</div>
<div id="attachment_715" class="wp-caption aligncenter" style="width: 545px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/Blog_RSS_x.png"><img class="size-full wp-image-715" title="Blog_RSS_x" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/Blog_RSS_x.png" alt="" width="545" height="205" /></a>
	<p class="wp-caption-text">Click on the &quot;x&quot; next to &quot;Blog/RSS&quot;, and Voila! it&#39;s gone!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/07/another-way-to-import-your-blog-posts-in-to-your-facebook-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>add your blog posts to your facebook page automatically</title>
		<link>http://www.bellafaithdesign.com/2010/07/add-your-blog-posts-to-your-facebook-page-automatically/</link>
		<comments>http://www.bellafaithdesign.com/2010/07/add-your-blog-posts-to-your-facebook-page-automatically/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 13:00:14 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[facebook fan page]]></category>
		<category><![CDATA[fb tutorial]]></category>
		<category><![CDATA[import blog posts to facebook page]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=687</guid>
		<description><![CDATA[Do you have a Facebook page for your business or organization where you would like to have your blog posts automatically posted/imported? Fortunately, there is a simple solution, a Facebook app called RSS Graffiti. There are a lot of options when using RSS Graffiti, but I&#8217;ll walk you through the basic set-up. First, go to: [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Do you have a Facebook page for your business or organization where you would like to have your blog posts automatically posted/imported? Fortunately, there is a simple solution, a Facebook app called <a href="http://www.facebook.com/RSS.Graffiti">RSS Graffiti</a>.</p>
<p>There are a lot of options when using RSS Graffiti, but I&#8217;ll walk you through the basic set-up.</p>
<p>First, go to: <a href="http://www.facebook.com/RSS.Graffiti">http://www.facebook.com/RSS.Graffiti</a> [you will need to be signed in to Facebook to follow the rest of the instructions]</p>
<div id="attachment_689" class="wp-caption aligncenter" style="width: 420px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/add_to_my_page.png"><img class="size-full wp-image-689" title="add_to_my_page" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/add_to_my_page.png" alt="" width="420" height="407" /></a>
	<p class="wp-caption-text">Click on &quot;Add to my Page&quot;</p>
</div>
<div id="attachment_690" class="wp-caption aligncenter" style="width: 504px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/add_to_page.png"><img class="size-full wp-image-690" title="add_to_page" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/add_to_page.png" alt="" width="504" height="499" /></a>
	<p class="wp-caption-text">A pop up window will appear, click &quot;Add to Page&quot; next to the page where you want to use the application.</p>
</div>
<div id="attachment_691" class="wp-caption aligncenter" style="width: 480px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/close.png"><img class="size-full wp-image-691" title="close" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/close.png" alt="" width="480" height="484" /></a>
	<p class="wp-caption-text">If you have other pages, the pop up stays open &amp; the page you added the application to disappears from the list. You can add the application to however many pages you want. When you are finished, click &quot;Close&quot;.</p>
</div>
<div id="attachment_692" class="wp-caption aligncenter" style="width: 201px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/ads_and_pages.png"><img class="size-full wp-image-692" title="ads_and_pages" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/ads_and_pages.png" alt="" width="201" height="420" /></a>
	<p class="wp-caption-text">Next, you need to go where you edit your pages. If you&#39;re unsure of how to get there, click on &quot;Home&quot; in the very top navigation to go to your Facebook home page. In the left sidebar under your picture, you&#39;ll see &quot;Ads and Pages&quot; click on it. If you have more than one page, you will have to select the page you are adding RSS Graffiti to, otherwise it will take you directly to the settings for your FB page.</p>
</div>
<div id="attachment_693" class="wp-caption aligncenter" style="width: 564px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/scroll_down_to_list_of_applications.png"><img class="size-full wp-image-693 " title="scroll_down_to_list_of_applications" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/scroll_down_to_list_of_applications.png" alt="" width="564" height="379" /></a>
	<p class="wp-caption-text">This is what the edit/settings option looks like for your FB page. Scroll down until you find RSS Graffiti under the Applications section.</p>
</div>
<div id="attachment_694" class="wp-caption aligncenter" style="width: 571px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/rss_graffiti_edit.png"><img class="size-full wp-image-694" title="rss_graffiti_edit" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/rss_graffiti_edit.png" alt="" width="571" height="107" /></a>
	<p class="wp-caption-text">When you find RSS Graffiti, select &quot;Edit&quot;.</p>
</div>
<div id="attachment_696" class="wp-caption aligncenter" style="width: 554px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/click_here_to_authorize_and_continue.png"><img class="size-full wp-image-696 " title="click_here_to_authorize_and_continue" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/click_here_to_authorize_and_continue.png" alt="" width="554" height="466" /></a>
	<p class="wp-caption-text">You will be taken to a page that looks like this, select &quot;Click here to authorize and continue&quot;</p>
</div>
<div id="attachment_697" class="wp-caption aligncenter" style="width: 550px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/click_here_to_allow_publishing.png"><img class="size-full wp-image-697 " title="click_here_to_allow_publishing" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/click_here_to_allow_publishing.png" alt="" width="550" height="449" /></a>
	<p class="wp-caption-text">Then, click &quot;Click here to allow publishing&quot;</p>
</div>
<div id="attachment_698" class="wp-caption aligncenter" style="width: 543px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/allow.png"><img class="size-full wp-image-698 " title="allow" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/allow.png" alt="" width="543" height="280" /></a>
	<p class="wp-caption-text">Another pop up, choose &quot;Allow&quot;</p>
</div>
<div id="attachment_699" class="wp-caption aligncenter" style="width: 545px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/add_feed.png"><img class="size-full wp-image-699 " title="add_feed" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/add_feed.png" alt="" width="545" height="181" /></a>
	<p class="wp-caption-text">Now that the permissions are set, it&#39;s time to add your feed address. Click on &quot;Add feed&quot;</p>
</div>
<div id="attachment_701" class="wp-caption aligncenter" style="width: 528px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/feed_url_feed_name_and_save.png"><img class="size-full wp-image-701 " title="feed_url_feed_name_and_save" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/feed_url_feed_name_and_save.png" alt="" width="528" height="442" /></a>
	<p class="wp-caption-text">Enter your feed address in the &quot;Feed URL&quot; &amp; a title for your feed in &quot;Feed Name&quot; - The default settings will post your blog posts with title, excerpt &amp; photo AND it will check your blog every 30 minutes for new posts. You can scroll down to edit these settings, like to change how often the app checks your blog for new blog posts, however the default settings are perfect for the average user. Once you have added the feed address, feed name and are happy with the settings, click &quot;Save&quot;</p>
</div>
<p>That&#8217;s it! Now, sit back, relax &#038; let RSS Graffiti will do all the work for you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/07/add-your-blog-posts-to-your-facebook-page-automatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>project :: ginaagnes.com</title>
		<link>http://www.bellafaithdesign.com/2010/07/project-ginaagnes-com/</link>
		<comments>http://www.bellafaithdesign.com/2010/07/project-ginaagnes-com/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 15:00:44 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[Gina Agnes]]></category>
		<category><![CDATA[hand lettering]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Tina McAllister]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=679</guid>
		<description><![CDATA[Author Tina McAllister approached me about a one page site design for her book, Gina Agnes. I read Gina Agnes a year ago, so I was really excited to work with Tina on this project. Gina Agnes is the story of a girl who was found as a baby in a pew, at Saint Agnes [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Author Tina McAllister approached me about a one page site design for her book, <a href="http://www.amazon.com/gp/product/158961223X?ie=UTF8&amp;tag=bellafaithdes-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=158961223X">Gina Agnes</a>. I read <a href="http://www.amazon.com/gp/product/158961223X?ie=UTF8&amp;tag=bellafaithdes-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=158961223X">Gina Agnes</a> a year ago, so I was really excited to work with Tina on this project. Gina Agnes is the story of a girl who was found as a baby in a pew, at Saint Agnes Catholic Church, &amp; is raised by three nuns &amp; Father Gerard.</p>
<p>I used colors from the cover as a starting point &amp; created a couple different layouts. For one of the designs, I illustrated a Catholic Church. For the other design, I created my first hand lettering design, inspired by the incredibly talented <a href="http://www.jessicahische.com">Jessica Hische</a>. I drew both the Church illustration &amp; the hand lettering with pencil &amp; paper, and then I traced the designs in Illustrator.</p>
<p>Once Tina saw the hand lettered design, she immediately knew that it was <strong><em>the</em></strong> design for <a href="http://www.ginaagnes.com">ginaagnes.com</a>.</p>
<p style="text-align: center;"><a class="post_img" href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/ginaagnes.png"><img class="aligncenter size-large wp-image-681" title="ginaagnes" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/ginaagnes-1024x975.png" alt="" width="553" height="527" /></a></p>
<p>See the live site → <a href="http://www.ginaagnes.com">ginaagnes.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/07/project-ginaagnes-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>project :: woof-thebook.com</title>
		<link>http://www.bellafaithdesign.com/2010/07/project-woof-thebook-com/</link>
		<comments>http://www.bellafaithdesign.com/2010/07/project-woof-thebook-com/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 03:53:38 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[in the design process]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[character illustration]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Tina McAllister]]></category>
		<category><![CDATA[Vivi]]></category>
		<category><![CDATA[Woof! The Book]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=651</guid>
		<description><![CDATA[When author Tina McAllister approached me about a one-page design for her latest book, Woof! The Book, I jumped at the opportunity. Working with Tina McAllister is always a pleasure, as we seem to have very similar tastes in design. And when she said she wanted me to illustrate the main character for her book, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When author Tina McAllister approached me about a one-page design for her latest book, <em>Woof! The Book</em>, I jumped at the opportunity. Working with Tina McAllister is always a pleasure, as we seem to have very similar tastes in design. And when she said she wanted me to illustrate the main character for her book, I was over the moon!</p>
<p><em>Woof! The Book </em>is the story of Vivi, a wife &amp; mother, who has completely let herself go, until she discovers the world of Botox &amp; other beauty treatments. In the book, Vivi gets a complete makeover from head to toe, so I needed to illustrate Vivi both &#8220;before&#8221; &amp; &#8220;after&#8221;.</p>
<p>I started with designing the &#8220;after&#8221; illustration of Vivi. However, my first illustration turned out too young&#8230;</p>
<p style="text-align: center;"><a class="post_img" href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/first-female-illustration.png"><img class="aligncenter size-full wp-image-653 noborder" title="first-female-illustration" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/first-female-illustration.png" alt="" width="290" height="300" /></a></p>
<p>So, I started over. This time, I was much happier with Vivi&#8217;s &#8220;after&#8221; illustration, so I manipulated it to produce the &#8220;before&#8221; illustration.</p>
<div style="text-align: center;"><a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-before-rockwell.png" class="post_img"><img class="size-full wp-image-656 noborder" title="vivi-before-rockwell" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-before-rockwell.png" alt="" width="200" height="560" /></a><a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-after-rockwell.png" class="post_img"><img class="size-full wp-image-657 noborder" title="vivi-after-rockwell" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-after-rockwell.png" alt="" width="200" height="560" /></a></div>
<p style="clear: both;">However, Vivi&#8217;s &#8220;before&#8221; illustration wasn&#8217;t <em>messy</em> enough &amp; her &#8220;after&#8221; was too <em>simple</em>, so some details were added to both illustrations&#8230;</p>
<p style="clear: both;">
<div id="attachment_659" class="wp-caption aligncenter" style="width: 500px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-before-2.png"><img class="size-full wp-image-659" title="vivi-before-2" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-before-2.png" alt="" width="500" height="500" /></a>
	<p class="wp-caption-text">Some stains were added to Vivi&#39;s pants &amp; untied shoelaces to her tennis shoe.</p>
</div>
<div id="attachment_660" class="wp-caption aligncenter" style="width: 500px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-after-changed-shirt-2.png"><img class="size-full wp-image-660" title="vivi-after-changed-shirt-2" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-after-changed-shirt-2.png" alt="" width="500" height="500" /></a>
	<p class="wp-caption-text">Some bling was added to Vivi&#39;s shirt &amp; a ring &amp; bracelet to accessorize her outfit. Plus, her lip color was changed to match her blouse with some glossy highlights.</p>
</div>
<p>However, Vivi&#8217;s &#8220;before&#8221; illustration still looked too <em>clean</em>, and Vivi&#8217;s lips in the &#8220;after&#8221; needed a <em>tad</em> more gloss&#8230;</p>
<div style="text-align: center;"><a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-before-rockwell-2.png" class="post_img"><img class="size-full wp-image-661 noborder" title="vivi-before-rockwell (2)" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-before-rockwell-2.png" alt="" width="200" height="580" /></a><a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-after.png" class="post_img"><img class="size-full wp-image-662 noborder" title="vivi-after" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/vivi-after.png" alt="" width="200" height="580" /></a></div>
<p style="clear: both;">Once the &#8220;before&#8221; &amp; &#8220;after&#8221; illustrations of Vivi were finalized, the rest of the single web page design came together very quickly&#8230;</p>
<p style="clear: both; text-align: center;"><a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/woof-full-screenshot.png" class="post_img"><img class="aligncenter size-large wp-image-663" title="woof-full-screenshot" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/07/woof-full-screenshot-726x1024.png" alt="" width="581" height="819" /></a></p>
<p>See the live site → <a href="http://www.woof-thebook.com">woof-thebook.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/07/project-woof-thebook-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>project :: brady &amp; associates redesign</title>
		<link>http://www.bellafaithdesign.com/2010/06/project-brady-associates-redesign/</link>
		<comments>http://www.bellafaithdesign.com/2010/06/project-brady-associates-redesign/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 07:14:11 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[portfolio]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[Brady & Associates]]></category>
		<category><![CDATA[bradyinc.com]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[SilverStripe]]></category>
		<category><![CDATA[website redesign]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=579</guid>
		<description><![CDATA[Every now &#38; then, I have the privilege of working with local {Kansas City} clientele. Although my KC clients are a fraction of my clientele, their projects are the most extensive. And Brady &#38; Associates was my most extensive website project to date. Brady &#38; Associates has been providing staffing productivity benchmarking and variance resolution services to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Every now &amp; then, I have the privilege of working with local {Kansas City} clientele. Although my KC clients are a fraction of my clientele, their projects are the most extensive. And <a href="http://www.bradyinc.com/">Brady &amp; Associates</a> was my most extensive website project to date.</p>
<p>Brady &amp; Associates has been providing <a title="Brady &amp; Associates" href="http://www.bradyinc.com/">staffing productivity benchmarking</a> and <a title="Brady &amp; Associates" href="http://www.bradyinc.com/">variance resolution services</a> to hospitals for more than 25 years. And {like me} the majority of their clients are not based here in Kansas City. With serving more than 600 hospitals across the U.S. and throughout Europe and the Middle East, Brady &amp; Associates&#8217; website is a fundamental representation of their business to current &amp; prospective clients.</p>
<p>When Brady &amp; Associates contacted me, they already had a website. Each page {of their old site} contained various elements that were pieced together; their site lacked a consistent flow. Their flash-based navigation was not optimized for SEO. The homepage featured a continuously scrolling list of hospitals served, which was created in Flash {with no SEO juice added} and was a distraction {since it did not give users the option to pause or slow the scrolling movement}. One of the rudimentary elements for branding was missing from the site: the Brady &amp; Associates logo. And the site had no Content Management System, so a web developer was required to make any content changes. Needless to say, bradyinc.com was ready for a makeover {and a CMS}.</p>
<div id="attachment_596" class="wp-caption aligncenter" style="width: 429px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/06/bradyinc-before.png"><img class="size-full wp-image-596   " title="bradyinc-before" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/06/bradyinc-before.png" alt="" width="429" height="367" /></a>
	<p class="wp-caption-text">The brady &amp; associates old homepage.</p>
</div>
<p>Our main objective was to create an overall professional design that flowed smoothly from page to page &amp; could be updated by the client. After thoroughly examining several Content Management Systems, I concluded that <a title="SilverStripe CMS" href="http://silverstripe.org/">SilverStripe</a> was the best CMS for the Brady &amp; Associates redesign. I was impressed with <a title="SilverStripe" href="http://silverstripe.org/">SilverStripe&#8217;s</a> extensive list of built-in features and it could easily be customized to meet every objective and feature Brady &amp; Associates wanted and needed.</p>
<div id="attachment_602" class="wp-caption aligncenter" style="width: 396px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/06/bradyassociates-logo.png"><img class="size-full wp-image-602" title="bradyassociates-logo" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/06/bradyassociates-logo.png" alt="" width="396" height="134" /></a>
	<p class="wp-caption-text">The brady &amp; associates logo has a retro-modern look.</p>
</div>
<p>The logo for Brady &amp; Associates is a great retro-modern design and needed to be prominently displayed on the redesign. Brady &amp; Associates still wanted animation on the homepage, but we did it smarter {with SEO juice} &amp; more user-friendly. I dipped into Flash {for the first time} and created an animated presentation highlighting why Brady &amp; Associates is the hospital benchmarking choice {with complimenting HTML}. In the sidebar, I added animated client testimonials, with fade transitions, using JavaScript {and the animation pauses when you hover over a testimonial}.</p>
<p>A members only area was created to capture leads and reward members {those who register} with insider information {a win-win for members &amp; Brady &amp; Associates}. HTML templates were created to mimic PDF resources for reading secure information within a web browser and to make them searchable within the site. A <a href="http://www.bradyinc.com/improvement-opportunity-self-assessment/">self-assessment questionnaire</a> was created, which calculates the visitor&#8217;s answers and assesses their need for new benchmarks. A drop-down navigation was integrated that could dynamically be updated as content was added to or dropped from the site. And since the previous site had a lot of content in different places, redirects had to be created &#8211; so that search engines recognized the new content &amp; visitors {using old links} would be directed to the new content.</p>
<p>As I mentioned earlier, there was a lot to the <a href="http://www.bradyinc.com/">Brady &amp; Associates</a> website redesign, and those are just the highlights.</p>
<div id="attachment_608" class="wp-caption aligncenter" style="width: 553px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/06/bradyandassociates1.png"><img class="size-large wp-image-608  " title="bradyandassociates" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/06/bradyandassociates1-1023x885.png" alt="" width="553" height="478" /></a>
	<p class="wp-caption-text">The redesigned brady &amp; associates website.</p>
</div>
<p>See the live site → <a title="Brady &amp; Associates" href="http://www.bradyinc.com/">bradyinc.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/06/project-brady-associates-redesign/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>project :: marlonandsyreeta.com</title>
		<link>http://www.bellafaithdesign.com/2010/06/project-marlonandsyreeta-com/</link>
		<comments>http://www.bellafaithdesign.com/2010/06/project-marlonandsyreeta-com/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 04:41:32 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[Covenant Keepers Inc.]]></category>
		<category><![CDATA[custom blog design]]></category>
		<category><![CDATA[Inspire Your Family]]></category>
		<category><![CDATA[Marlon & Syreeta Smith]]></category>
		<category><![CDATA[MarlonandSyreeta.com]]></category>
		<category><![CDATA[thesis customization]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=521</guid>
		<description><![CDATA[Marlon &#38; Syreeta Smith needed a logo &#38; blog design for their new venture: Covenant Keepers, Inc. Once we finished their logo design, it was time to move on → to the blog design. Marlon &#38; Syreeta had a clear vision for their blog &#38; already had the various sections laid out &#8211; from the different [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Marlon &amp; Syreeta Smith needed a logo &amp; blog design for their new venture: Covenant Keepers, Inc. Once we finished their <a href="http://www.bellafaithdesign.com/2010/05/project-a-logo-for-covenant-keepers-inc/">logo design</a>, it was time to move on → to the blog design. Marlon &amp; Syreeta had a clear vision for their blog &amp; already had the various sections laid out &#8211; from the different categories to the different pages. The couple wanted the blog to be called <em><a href="http://www.marlonandsyreeta.com">Marlon &amp; Syreeta&#8217;s Blog</a></em>, to give it that personal feeling. We all agreed that Thesis should be used as the basic framework for the site. Marlon picked his color {blue}, Syreeta picked her color {cranberry} &amp; the design went from there.</p>
<blockquote><p>Marlon &amp; Syreeta&#8217;s Vision Statement: To encourage, educate and empower newlywed couples, engaged couples and those dating with Biblical principles and real-life strategies for experiencing healthy marriages with a 0% divorce rate.</p></blockquote>
<p>In addition to the blog&#8217;s graphics &amp; layout, we integrated social media, created custom questionnaires, installed google analytics, and set up email subscription to the blog&#8217;s feed. I also helped Marlon &amp; Syreeta with adding content to their site &amp; guided them through the basics of using WordPress.</p>
<p style="text-align: center;"><a class="post_img" href="http://www.bellafaithdesign.com/wp-content/uploads/2010/06/marlonandsyreeta.png"><img class="aligncenter size-large wp-image-567" title="marlonandsyreeta" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/06/marlonandsyreeta-1024x603.png" alt="" width="614" height="362" /></a></p>
<p>See the live site → <a title="Marlon and Syreeta's Blog" href="http://www.marlonandsyreeta.com">MarlonandSyreeta.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/06/project-marlonandsyreeta-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress :: make your post sticky</title>
		<link>http://www.bellafaithdesign.com/2010/05/wordpress-make-your-post-sticky/</link>
		<comments>http://www.bellafaithdesign.com/2010/05/wordpress-make-your-post-sticky/#comments</comments>
		<pubDate>Fri, 28 May 2010 07:09:57 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[featured posts]]></category>
		<category><![CDATA[sticky posts]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WP tutorial]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=545</guid>
		<description><![CDATA[What is a sticky post? Essentially, it is a blog post that you stick to the top of your blog. A blog is normally ordered by date, from the most recent blog post {at the top/beginning} to the oldest blog post {at the bottom/end}. A sticky post will be featured at the top of the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>What is a </strong><em><strong>sticky</strong></em><strong> post?</strong></p>
<p>Essentially, it is a blog post that you <em>stick</em> to the top of your blog.</p>
<p>A blog is normally ordered by date, from the most recent blog post {at the top/beginning} to the oldest blog post {at the bottom/end}. A sticky post will be featured at the top of the blog {with the rest of your blog posts chronologically ordered below it}.</p>
<p>It is possible to have more than one sticky post at a time. If you have more than one sticky post, all sticky posts will be ordered by date {from most recent to oldest}, followed by the rest of your blog posts {in their normal dated order}.</p>
<p><strong>Is it difficult to make a post </strong><em><strong>sticky</strong></em><strong>?</strong></p>
<p>The good news for you WordPress users is that WP has built-in <em>sticky</em>-ness powers {you no longer need a plugin or custom code to get this feature)!</p>
<blockquote><p>Before you follow the four simple steps I will show you in a moment, please make sure you have the most recent version of WordPress. At the time of this writing, the most recent version of WP is 2.9.2. You will know you have an outdated version if you have a message like this at the top of your WP dashboard:</p>
<div id="attachment_547" class="wp-caption aligncenter" style="width: 553px">
	<a class="post_img" href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/update_wordpress1.png"><img class="size-large wp-image-547  " title="update_wordpress" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/update_wordpress1-1024x80.png" alt="" width="553" height="43" /></a>
	<p class="wp-caption-text">The message reads &quot;WordPress 2.9.2 is available! Please update now.&quot; (Click on this image to see a larger version.)</p>
</div>
<p>*For security reasons, you should always upgrade whenever there is a new version of WordPress. It is important you back-up your database before upgrading. If you need help with this, please <a href="/contact">contact</a> me.</p></blockquote>
<p><strong>Here&#8217;s how to make a post </strong><em><strong>sticky</strong></em><strong>:</strong></p>
<div id="attachment_549" class="wp-caption aligncenter" style="width: 296px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/edit_visibility.png"><img class="size-full wp-image-549" title="edit_visibility" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/edit_visibility.png" alt="" width="296" height="223" /></a>
	<p class="wp-caption-text">In the Publish area, click on &quot;Edit&quot; (in the Visibility line).</p>
</div>
<div id="attachment_550" class="wp-caption aligncenter" style="width: 294px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/check_sticky_box1.png"><img class="size-full wp-image-550" title="check_sticky_box" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/check_sticky_box1.png" alt="" width="294" height="315" /></a>
	<p class="wp-caption-text">1. Check the box that says &quot;Stick this post to the front page&quot;. <br />2. Click &quot;OK&quot;. <br />3. Click on &quot;Update Post&quot;.</p>
</div>
<p>That&#8217;s it! Your sticky post should now be displayed at the top of your blog. Any questions?</p>
<blockquote><p>Note: For those of you with CSS skills, you can modify the look of the sticky posts by adding styles for <strong>.sticky</strong> {the class WordPress adds to sticky posts}.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/05/wordpress-make-your-post-sticky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>facebook :: import your blog posts</title>
		<link>http://www.bellafaithdesign.com/2010/05/facebook-import-your-blog-posts/</link>
		<comments>http://www.bellafaithdesign.com/2010/05/facebook-import-your-blog-posts/#comments</comments>
		<pubDate>Thu, 27 May 2010 21:43:13 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[fb tutorial]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=523</guid>
		<description><![CDATA[I have wanted to add tutorials to my blog for some time now, and today I&#8217;m going to do just that. [Please bear with me, it is my first public tutorial.] I&#8217;ve had a lot of requests lately for importing blog posts to Facebook pages and profiles. Today, I&#8217;m going to show you how to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I have wanted to add tutorials to my blog for some time now, and today I&#8217;m going to do just that. [Please bear with me, it is my first public tutorial.]</p>
<p>I&#8217;ve had a lot of requests lately for importing blog posts to <a href="http://www.facebook.com">Facebook</a> pages and profiles. Today, I&#8217;m going to show you how to import your blog posts to your facebook notes.</p>
<div id="attachment_524" class="wp-caption aligncenter" style="width: 562px">
	<a class="post_img" href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/options.png"><img class="size-full wp-image-524 " title="options" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/options.png" alt="" width="562" height="157" /></a>
	<p class="wp-caption-text">On your profile page, click on &quot;Options&quot;.</p>
</div>
<div id="attachment_525" class="wp-caption aligncenter" style="width: 555px">
	<a class="post_img" href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/settings.png"><img class="size-full wp-image-525 " title="settings" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/settings.png" alt="" width="555" height="170" /></a>
	<p class="wp-caption-text">When you click on &quot;Options&quot;, it is replaced by &quot;Settings&quot;. Now click on &quot;Settings&quot;.</p>
</div>
<div id="attachment_526" class="wp-caption aligncenter" style="width: 556px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/blog_rss.png"><img class="size-full wp-image-526" title="blog_rss" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/blog_rss.png" alt="" width="556" height="266" /></a>
	<p class="wp-caption-text">Then click on &quot;Blog/RSS&quot;.</p>
</div>
<div id="attachment_527" class="wp-caption aligncenter" style="width: 560px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/feedaddress_import.png"><img class="size-full wp-image-527" title="feedaddress_import" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/feedaddress_import.png" alt="" width="560" height="351" /></a>
	<p class="wp-caption-text">Type in your rss feed address &amp; click on &quot;Import&quot;.</p>
</div>
<div id="attachment_528" class="wp-caption aligncenter" style="width: 547px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/in_notes.png"><img class="size-full wp-image-528" title="in_notes" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/in_notes.png" alt="" width="547" height="604" /></a>
	<p class="wp-caption-text">That&#39;s it! Now your blog posts will be imported to your Facebook Notes.</p>
</div>
<p><a href="http://www.facebook.com">Facebook</a> will automatically check your RSS feed &amp; import new posts when they are published. It is important to note that sometimes there is a delay {sometimes even a few days} with Facebook actually checking and pulling in the content. If you notice this, you can just wait for Facebook to do it&#8217;s thing, or you can manually update the notes. Here&#8217;s how:</p>
<p>First, make sure you are on your profile page &amp; follow the steps above to click on &#8220;Options&#8221; &rarr; &#8220;Settings&#8221; &rarr; &#8220;Blog/RSS&#8221; and then:</p>
<div id="attachment_531" class="wp-caption aligncenter" style="width: 564px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/manually_update.png"><img class="size-full wp-image-531" title="manually_update" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/manually_update.png" alt="" width="564" height="446" /></a>
	<p class="wp-caption-text">Click on &quot;Update Now&quot;.</p>
</div>
<p>Before I wrap up this tutorial, there is one more thing I want to share with you. By default, when you set up to import blog posts to your Facebook Notes, it will automatically publish new posts to your wall {so they&#8217;ll show up in your friends&#8217; news feeds}. However, since there can be a delay from when you publish your blog posts {on your blog} to when they appear in your FB {Facebook} Notes, I prefer to use <a href="http://apps.facebook.com/rssgraffiti/">RSS Grafitti</a> to publish blog posts to FB pages and walls.</p>
<p><a href="http://apps.facebook.com/rssgraffiti/">RSS Grafitti</a> is an awesome FB application that you can easily set up to check your blog every 30 minutes. It will check your blog every 30 minutes {or whatever time range you select}, and publish your new blog posts to your wall or FB page.</p>
<p>Now, if you&#8217;re like me and choose to set up RSS Grafitti, each blog post will post twice to your wall {whenever FB gets around to updating your imported Notes}. If you don&#8217;t like the duplicate wall content, you can set FB Notes to not publish to your wall. Here&#8217;s how:</p>
<div id="attachment_534" class="wp-caption aligncenter" style="width: 219px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/account_application_settings.png"><img class="size-full wp-image-534" title="account_application_settings" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/account_application_settings.png" alt="" width="219" height="277" /></a>
	<p class="wp-caption-text">Click on &quot;Account&quot; and then &quot;Application Settings&quot;.</p>
</div>
<div id="attachment_535" class="wp-caption aligncenter" style="width: 559px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/edit_settings.png"><img class="size-full wp-image-535 " title="edit_settings" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/edit_settings.png" alt="" width="559" height="342" /></a>
	<p class="wp-caption-text">Look for Notes in your list of applications. Click on the &quot;Edit Settings&quot; for Notes.</p>
</div>
<div id="attachment_536" class="wp-caption aligncenter" style="width: 472px">
	<a href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/additional_permissions_publish_uncheck_okay.png"><img class="size-full wp-image-536" title="additional_permissions_publish_uncheck_okay" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/additional_permissions_publish_uncheck_okay.png" alt="" width="472" height="311" /></a>
	<p class="wp-caption-text">Click on the &quot;Additional Permissions&quot; tab. Click on the checkbox that is checked for &quot;Publish Content to My Wall&quot; (so make sure it is unchecked as pictured). Then click &quot;Okay&quot;.</p>
</div>
<p>So there it is, my first official tutorial. Since I&#8217;m planning on adding more tutorials on various topics, I&#8217;d greatly appreciate your honest feedback. Afterall, I <em>do</em> want these to be helpful. Also, let me know if you prefer written tutorials {like this one} or video tutorials {with text/audio/both?}.</p>
<p>If, after reading this tutorial, you&#8217;d just rather donate to my coffee fund &amp; have me set up your Blog→FB importing, you can contact me <a href="/contact">here</a>. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/05/facebook-import-your-blog-posts/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>project :: a logo for Covenant Keepers Inc.</title>
		<link>http://www.bellafaithdesign.com/2010/05/project-a-logo-for-covenant-keepers-inc/</link>
		<comments>http://www.bellafaithdesign.com/2010/05/project-a-logo-for-covenant-keepers-inc/#comments</comments>
		<pubDate>Thu, 27 May 2010 17:36:17 +0000</pubDate>
		<dc:creator>Kayla</dc:creator>
				<category><![CDATA[logos]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[Covenant Keepers Inc.]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[Marlon & Syreeta Smith]]></category>

		<guid isPermaLink="false">http://www.bellafaithdesign.com/?p=268</guid>
		<description><![CDATA[I have some catching up to do on my portfolio, so let&#8217;s get going&#8230; Marlon &#38; Syreeta Smith made the decision to go into business together. When the Smiths contacted me, they explicitly defined&#8230; &#8230;their company: Covenant Keepers, Inc. &#8230;their purpose: &#8220;To create a GLOBAL movement of positive and healthy relationships, with special focus on families [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I have some catching up to do on my portfolio, so let&#8217;s get going&#8230;</p>
<p>Marlon &amp; Syreeta Smith made the decision to go into business together. When the Smiths contacted me, they explicitly defined&#8230;</p>
<p>&#8230;their company: Covenant Keepers, Inc.</p>
<p>&#8230;their purpose: &#8220;To create a GLOBAL movement of positive and healthy relationships, with special focus on <strong>families</strong> because the family is the nucleus of a society’s well-being.&#8221; <br /><span style="font-size: 11px;">{statement taken from their <a href="http://www.marlonandsyreeta.com">site</a>}</span></p>
<p>&#8230;their goal: to eliminate divorce {0% divorce rate}</p>
<p>&#8230;their need: a logo &amp; blog design</p>
<p>Any experienced designer, in the branding or web design field, will agree that the branding {logo} should be developed before the site design, so that&#8217;s what we did.</p>
<p>When I presented the first round of logo design visuals, Marlon &amp; Syreeta deliberated &amp; agreed they liked the use of a heart {in place of an &#8220;o&#8221; in Covenant} and the idea of interlocking rings {which were just basic interlocking circles at that time}. They wanted to explore the idea of making the circles look more like rings {and detailed to represent &#8220;his&#8221; &amp; &#8220;hers&#8221;}. The challenge with the rings, was to keep them simple enough that they followed the basic guidelines for <em>all</em> logos {more on the basic guidelines later}. Therefore, I created rings with various degrees of detail &amp; alternate viewpoints and integrated them into the logo. The winning design fusion thus became the logo for Covenant Keepers, Inc.:</p>
<p style="text-align: center;"><a class="post_img" href="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/covenant_keepers_inc_logo.png"><img class="aligncenter size-full wp-image-516 noborder" title="covenant_keepers_inc_logo" src="http://www.bellafaithdesign.com/wp-content/uploads/2010/05/covenant_keepers_inc_logo.png" alt="" width="600" height="370" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bellafaithdesign.com/2010/05/project-a-logo-for-covenant-keepers-inc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
