<?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>WPFAB</title>
	<atom:link href="http://wpfab.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpfab.com</link>
	<description>Fabricating Fabulous WordPress Websites</description>
	<lastBuildDate>Tue, 05 Feb 2013 16:32:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Clean up weird characters in your WordPress posts</title>
		<link>http://wpfab.com/clean-up-weird-characters-in-your-wordpress-posts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=clean-up-weird-characters-in-your-wordpress-posts</link>
		<comments>http://wpfab.com/clean-up-weird-characters-in-your-wordpress-posts/#comments</comments>
		<pubDate>Fri, 16 Nov 2012 21:25:03 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1729</guid>
		<description><![CDATA[I just recently moved a large site to a new server. The database was over 300 mb so I used a nifty tool I found years ago to split up the database into smaller pieces to make importing easier. Everything went fine with the import except there were lots of weird characters in many of [...]]]></description>
				<content:encoded><![CDATA[<p>I just recently moved a large site to a new server. The database was over 300 mb so I used a nifty tool I found years ago to split up the database into smaller pieces to make importing easier. </p>
<p>Everything went fine with the import except there were lots of weird characters in many of the posts. Since these nasty little characters are caused by character set issues, I made a few adjustments and then used a plugin that I found to convert all the tables to UTF-8 called <a href="http://wordpress.org/extend/plugins/utf-8-db-converter/">Convert WP Database to UTF-8</a>. That got rid of most of my weird characters but I was still left with hundreds of posts that had the dreaded &#8220;black diamond question mark&#8221; symbol in them.  It looks like this: � </p>
<p>Scary, isn&#8217;t it?  </p>
<p>If it had just been a few posts, I would have just edited them and gone about my merry way. But edit over 400 posts? No way.  </p>
<p>My Google searches came up with a great post on <a href="http://digwp.com/">dig.wp</a> (one of my favorite sites) about <a href="http://digwp.com/2011/07/clean-up-weird-characters-in-database/">cleaning up weird characters in a database</a> </p>
<p>Bingo! Exactly what I was looking for. </p>
<p>If you are plagued by those ugly little black diamond question marks, here&#8217;s how to send them packing. Run the following query on your database (instructions for using phpMyAdmin follow).</p>
<pre class="brush: plain; title: ; notranslate">UPDATE wp_posts SET post_content = REPLACE(post_content, 'ï¿½', ''); </pre>
<p>What I&#8217;m doing with this query is replacing the black diamond question mark with just a blank space. If you want to insert something in place of the black diamond question mark, you would put it between the single quotation marks. </p>
<h2>A few important notes: </h2>
<p>1. The query above works for a default WordPress install where the table prefix is wp_ . If your table prefix is different (and it should be), then replace wp_ with the appropriate prefix. </p>
<p>2. Make sure to take a backup of your database before doing this. You never know. </p>
<p>To run this query in phpMyAdmin:<br />
1. Click on your database name, on the left. </p>
<p><img src="http://wpfab.com/wp-content/uploads/2012/11/phpmyadmin-screen-1.jpg" alt="phpmyadmin screen shot 1" title="phpmyadmin-screen-1" width="600" height="222" class="aligncenter size-full wp-image-1733" /></p>
<p>2. Click on the SQL tab in the top right area. </p>
<p>3. Enter the query in the big white box there and then click the little oval &#8220;go&#8221; button in the lower right of the screen. </p>
<p><img src="http://wpfab.com/wp-content/uploads/2012/11/phpmyadmin-screen-2.jpg" alt="phpmyadmin screenshot 2" title="phpmyadmin-screen-2" width="600" height="208" class="aligncenter size-full wp-image-1734" /></p>
<p>You should receive a message shortly that the query ran successfully. </p>
<p>I hope this solves your dreaded dark diamond question mark problems.  <img src='http://wpfab.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I think this is a great way to quickly clean up a messy database without pulling out most of your hair. </p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/clean-up-weird-characters-in-your-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Customize a Specific WordPress Widget</title>
		<link>http://wpfab.com/how-to-customize-a-specific-wordpress-widget/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-customize-a-specific-wordpress-widget</link>
		<comments>http://wpfab.com/how-to-customize-a-specific-wordpress-widget/#comments</comments>
		<pubDate>Mon, 02 Apr 2012 21:13:17 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1711</guid>
		<description><![CDATA[Many themes, including StudioPress Themes, tend to use the same CSS styling rules for all of the widgets in a section, like the sidebar. To customize a specific widget, you’ll need to edit your style.css file in your WordPress theme. You’ll find this in your theme’s folder on your server (wp-content/themes/your-theme-name/style.css) and you can also [...]]]></description>
				<content:encoded><![CDATA[<p>Many themes, including StudioPress Themes, tend to use the same CSS styling rules for all of the widgets in a section, like the sidebar.</p>
<p>To customize a specific widget, you’ll need to edit your style.css file in your WordPress theme. You’ll find this in your theme’s folder on your server (wp-content/themes/your-theme-name/style.css) and you can also access it within the WordPress dashboard. Go to Appearance – Editor. You’ll see the style.css file for the activated theme at the bottom of the list of files on the right and this file will be open in the editor for you by default.</p>
<h2><strong>CSS Rules – a very brief explanation </strong></h2>
<p>In the style.css file you will see lots of lines of code that look similar to this:</p>
<pre class="brush: css; title: ; notranslate">#wrap {

background-color: #fff;
margin: 15px auto;
overflow: hidden;
padding: 0 0 20px;
width: 980px;
-moz-box-shadow: 0 1px 2px #999;
-webkit-box-shadow: 0 1px 2px #999;
}
</pre>
<p>These are CSS rules. Each CSS rule has two main parts: a selector, and one or more declarations.</p>
<p>W3schools.com has a great <a href="http://w3schools.com/css/css_syntax.asp">diagram that illustrates CSS Syntax.</a></p>
<h2><strong>Finding the name of the widget you want to style</strong></h2>
<p>The first thing that you need to do is find the name of the widget that you want to give individual styling to.  The easiest way to do this is by using the <a href="http://getfirebug.com/">Firebug plugin</a> for the Firefox browser. While viewing your blog, put your cursor over the widget you want to style and right click. You will be able to view the source code (html) and see the name of the individual widget. Alternately, you could right click anywhere on the screen while viewing your site and then click on View Page Source or View Source (depending on your browser.) This will open another window that will display the pages’ html</p>
<p>In StudioPress Themes, widgets are typically styled in the CSS using a generic definition based on the class (which is “widget”), that affects all of them.  This class is defined using one of these selectors:</p>
<ul>
<li>#sidebar .widget</li>
<li>#homepage .widget</li>
</ul>
<p>When WordPress generates the html from the widget code, it gives each widget an ID name and class name, along with a generic widget class. Here is what the html may look like, depending on what widgets you are using:</p>
<pre class="brush: xml; title: ; notranslate">&lt;div id=&quot;sidebar&quot; class=&quot;sidebar widget-area&quot;&gt;&lt;div id=&quot;text-353240355&quot; class=&quot;widget widget_text&quot;&gt;</pre>
<p>From the html code source above, we can see that the ID name of the first widget is “text-353240355 which is what we need <em>to customize that specific WordPress widget</em> and the class name is “widget” (<em>from class=</em>&#8220;widget widget_text&#8221;.)</p>
<p>All we need to do now is add a new CSS selector to style the selected widget.  In this case, let’s say that we want to add a specific font color and bold the text.</p>
<p>In order to affect our selected widget, we use the name that we found above, in the CSS definition:</p>
<pre class="brush: css; title: ; notranslate">#sidebar  #text-353240355 { 
color: #CC0099; 
font-weight: bold;
} 
</pre>
<p>Since we only provided settings for two items, the rest of the styling will come from the generic rule through inheritance. That rule, for this example, looks like this:</p>
<pre class="brush: css; title: ; notranslate">#sidebar .widget  {
background-color: #fff;
border: 1px solid #ddd;
padding: 10px;
}
</pre>
<p>So to customize a specific widget, add the additional or overriding declarations to the specific selector {#sidebar #text-353240355}.</p>
<p>For example, the generic rule above has a setting for a background color of white (#fff), but suppose you want your selected widget to have its own unique background color of black (#000) and you don’t want any borders on your widget. You would then add the declarations to the specific widget rule like this:</p>
<pre class="brush: css; title: ; notranslate">#sidebar #text-353240355 {
background-color: #000;
border: none;
color: #CC0099; 
font-weight: bold;
}
</pre>
<p>The background and border declarations in our specific widget rule above will override the background and border declarations in the generic widget definition. However, your widget will still retain the 10px padding which is specified in the generic rule.</p>
<p>So that’s the basics. If you’re new to CSS, I would encourage you to take the time to review the tutorials on W3Schools: <a href="http://w3schools.com/css/">http://w3schools.com/css/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/how-to-customize-a-specific-wordpress-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Fab Gets a 5-Star Makeover</title>
		<link>http://wpfab.com/wp-fab-gets-a-5-star-makeover/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wp-fab-gets-a-5-star-makeover</link>
		<comments>http://wpfab.com/wp-fab-gets-a-5-star-makeover/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 23:04:19 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1657</guid>
		<description><![CDATA[The fun thing about being a WordPress developer is that I get to work with a fabulous world-class designer, Sharon at Asi-Asi Design. Sharon and I have been working together since January 2009, when I first hung out my WordPress developer shingle. Sharon is based in Europe, while I&#8217;m U.S. based and we work with [...]]]></description>
				<content:encoded><![CDATA[<p>The fun thing about being a WordPress developer is that I get to work with a fabulous world-class designer, Sharon at <a href="http://www.asi-asi.com">Asi-Asi Design</a>. Sharon and I have been working together since January 2009, when I first hung out my WordPress developer shingle. Sharon is based in Europe, while I&#8217;m U.S. based and we work with clients all over the globe. You&#8217;ll see the benefit of our collaboration on projects like <a href="http://wpfab.com/stylemakers-international/">Stylemakers International</a>, <a href="http://wpfab.com/the-green-familia-recycles-their-look/">The Green Familia</a>, and <a href="http://wpfab.com/our-latest-site-featured-in-studiopress-showcase/">Julia Hart</a>. </p>
<p>Over the years, I&#8217;ve redone my site numerous times. There&#8217;s always a new theme that catches my eye. But there&#8217;s something about working on client sites that leaves little time to tweak out your own. So while I tried to at least keep my site looking orderly, I was painfully aware that it wasn&#8217;t really conveying my personality or my abilities. Sharon and I had pondered putting together just the right look and branding for my site over the years, but just never carved out the time to complete it. </p>
<p>Finally, we both had a few moments of inspiration. With a plea of &#8220;help!&#8221; from me and a bit of direction, Sharon worked her design magic to come up with what you see on WP Fab today: a 5-star makeover.</p>
<p>I knew I wanted to use the new Genesis Magazine theme as the basis because I like the clean look of it and felt it would be a good background on which to showcase client projects. Sharon knew my favorite color is purple and incorporated that into the look of the site. The logo, using the 5 stars as it&#8217;s theme, just felt like it fit, as I always strive to deliver 5-star service. I also feel it&#8217;s a perfect fit for the type of sites that my collaboration with Sharon produces: her fabulous design and layout combined with my WordPress knowledge and customization. </p>
<p>At last, I feel I have a look and brand that I can move forward with. It&#8217;s a great feeling. </p>
<p>I&#8217;ll be doing a series of posts soon to show the whole 5-star WordPress makeover, from start to finish, so you can see what Sharon and I could do for you. </p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/wp-fab-gets-a-5-star-makeover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stylemakers International</title>
		<link>http://wpfab.com/stylemakers-international/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=stylemakers-international</link>
		<comments>http://wpfab.com/stylemakers-international/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 22:46:25 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1645</guid>
		<description><![CDATA[Website URL: &#160; stylemakersinternational.com Theme Used: Genesis Lifestyle child theme Work Performed: &#160;WordPress security enhanced installation, plugin install &#038; configure, theme customization Design: Asi Asi Design Renée Coppinger wanted to revamp her current site and give it a stylish look. The end result is a bold and chic site, if I do say so myself, [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.wpfab.com/wp-content/themes/wpfab/images/portfolio/postimg/stylemakers.jpg" alt="Stylemakers International" class="aligncenter" />
<div id="projectdetails">
<p><span class="details">Website URL: </span>&nbsp; <a href="http://stylemakersinternational.com/"> stylemakersinternational.com</a></p>
<p><span class="details">Theme Used: </span>Genesis Lifestyle child theme</p>
<p><span class="details">Work Performed: </span>&nbsp;WordPress security enhanced installation, plugin install &#038; configure, theme customization</p>
<p><span class="details">Design: </span><a href="http://www.asi-asi.com">Asi Asi Design</a></p>
</div>
<p>Renée Coppinger wanted to revamp her current site and give it a stylish look. The end result is a bold and chic site, if I do say so myself, thanks to the brilliant design work of my partner in WordPress, Sharon at Asi Asi Design. </p>
<p>For the Stylemakers International site, I started with the Genesis Lifestyle theme and made several customizations, one of the most noticeable being the large featured images on the home page.</p>
<p>I also added a top navigation bar and created left and right subsections. The left top navigation bar contains icons for RSS, Facebook, and Twitter with appropriate links to those accounts. The right area of the top navigation holds the site search. The top navigation bar was a feature of the Classic StudioPress Lifestyle theme but is not a part of the Genesis Lifestyle theme. </p>
<p>A small logo in the lower left footer, outside the main body of the site, completes the classy look of the site. </p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/stylemakers-international/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rich Goldman Asset Management</title>
		<link>http://wpfab.com/rich-goldman-asset-management/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rich-goldman-asset-management</link>
		<comments>http://wpfab.com/rich-goldman-asset-management/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 22:24:46 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1631</guid>
		<description><![CDATA[Website URL: &#160; richgoldmanassetmanagement.com Theme Used: Custom to match existing non-WordPress site Work Performed: &#160;WordPress security enhanced installation, plugin install &#038; configure, theme customization Design: Provided by client Project manager Amy Laff asked me if I could convert her client&#8217;s site to WordPress, and of course I said yes. I replicated the current layout and [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.wpfab.com/wp-content/themes/wpfab/images/portfolio/postimg/rgam.jpg" alt="Rich Goldman asset mgmt" class="aligncenter" />
<div id="projectdetails">
<p><span class="details">Website URL: </span>&nbsp; <a href="http://richgoldmanassetmanagement.com/"> richgoldmanassetmanagement.com</a></p>
<p><span class="details">Theme Used: </span>Custom to match existing non-WordPress site</p>
<p><span class="details">Work Performed: </span>&nbsp;WordPress security enhanced installation, plugin install &#038; configure, theme customization</p>
<p><span class="details">Design: </span>Provided by client</p>
</div>
<p>Project manager Amy Laff asked me if I could convert her client&#8217;s site to WordPress, and of course I said yes. </p>
<p>I replicated the current layout and look of the non-WordPress site and converted it to a WordPress site, which makes it much easier for the client to manage and update. </p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/rich-goldman-asset-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Widget makes adding social media links easy</title>
		<link>http://wpfab.com/social-media-widget-makes-adding-social-media-links-easy/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=social-media-widget-makes-adding-social-media-links-easy</link>
		<comments>http://wpfab.com/social-media-widget-makes-adding-social-media-links-easy/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 20:50:35 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[WordPress Plugin Picks]]></category>
		<category><![CDATA[social media widget]]></category>
		<category><![CDATA[WordPress plugins]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1578</guid>
		<description><![CDATA[I found a great plugin today that I wanted to pass along. It&#8217;s called Social Media Widget and it&#8217;s a super easy way to add social media icons with their links to your sidebar. All you do to make the icons for the services you want to display is enter the URL for that service. [...]]]></description>
				<content:encoded><![CDATA[<p>I found a great plugin today that I wanted to pass along. </p>
<p>It&#8217;s called <a href="http://wordpress.org/extend/plugins/social-media-widget/">Social Media Widget</a> and it&#8217;s a super easy way to add social media icons with their links to your sidebar. All you do to make the icons for the services you want to display is enter the URL for that service. The widget creates the icons for you from one of <strong>five included icon packs</strong>. You get to choose the icon pack you want to use. And if none of those icon packs make your day, you can even use your own set of icons. </p>
<p>This widget has a bunch of options. It supports over 40 social media sites and yes, that includes Google +1. It also has a section where you can input up to six custom icons. You just type in the URL of the icon image you want to do and the corresponding URL you want it to link to. </p>
<p>Want more? You&#8217;ve got it. You also have three icon size options (16px, 32px, and 64px) plus four options for animation of the icons when you roll over them with your cursor. </p>
<p>I haven&#8217;t had much time to play with this widget but I can tell you that it made my day. I think you&#8217;ll really find it handy.  </p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/social-media-widget-makes-adding-social-media-links-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TRY Chips</title>
		<link>http://wpfab.com/try-chips/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=try-chips</link>
		<comments>http://wpfab.com/try-chips/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 21:36:51 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1549</guid>
		<description><![CDATA[Website URL: &#160; trychips.com Theme Used: Genesis Outreach Work Performed: &#160;WordPress security enhanced installation, plugin install &#038; configure, theme customization, adding extra sidebar next to home page gallery. Design: Provided by client Featured Customization: Quotes collection plugin added so client could have random motivational quotes appear in sidebar. Tim and Jerry, the co-owners of TRYChips, [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.wpfab.com/wp-content/themes/wpfab/images/portfolio/postimg/trychips.jpg" alt="TRY chips" class="aligncenter" /></p>
<div id="projectdetails">
<p><span class="details">Website URL: </span>&nbsp;<a href="http://www.trychips.com/"> trychips.com</a></p>
<p><span class="details">Theme Used: </span>Genesis Outreach</p>
<p><span class="details">Work Performed: </span>&nbsp;WordPress security enhanced installation, plugin install &#038; configure, theme customization, adding extra sidebar next to home page gallery.</p>
<p><span class="details">Design: </span>Provided by client</p>
<p><span class="details">Featured Customization: </span>Quotes collection plugin added so client could have random motivational quotes appear in sidebar.</p>
</div>
<p>Tim and Jerry, the co-owners of TRYChips, are on a mission to get the couch potatoes of the world up and moving. They created TRYChips as a healthy alternative to the sugary &#8220;energy&#8221; snacks out there. (Let me tell you&#8230;TRYChips are delicious. Thanks Tim and Jerry for getting me addicted to those dehydrated bananas!) </p>
<p>Tim and Jerry had picked out the Outreach theme and were happy with the look of it, so we added his logo to it and customized a new sidebar to appear next to the homepage gallery. </p>
<p>After some little tweaks here and there and a bad experience with an e-commerce plugin that both Tim and I won&#8217;t soon forget, their site is a place where all their &#8220;TRYbe&#8221; can connect and find out about the latest challenging events&#8230;.and get a bag of those addicting bananas.  <img src='http://wpfab.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
<p>Thanks Tim and Jerry! You&#8217;re a blast to work with. </p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/try-chips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Smarter Message</title>
		<link>http://wpfab.com/the-smarter-message/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-smarter-message</link>
		<comments>http://wpfab.com/the-smarter-message/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 18:32:35 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1517</guid>
		<description><![CDATA[Website URL: &#160; thesmartermessage.com Theme Used: Custom on Genesis Framework Work Performed: &#160;WordPress security enhanced installation, plugin install &#038; configure, theme customization Design: Provided by client Featured Customization: Custom graphic applied to each page title]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.wpfab.com/wp-content/themes/wpfab/images/portfolio/postimg/smartermessage.jpg" alt="Fiduciary Marine" class="aligncenter" />
<div id="projectdetails">
<p><span class="details">Website URL: </span>&nbsp;<a href="http://www.thesmartermessage.com"> thesmartermessage.com</a></p>
<p><span class="details">Theme Used: </span>Custom on Genesis Framework</p>
<p><span class="details">Work Performed: </span>&nbsp;WordPress security enhanced installation, plugin install &#038; configure, theme customization</p>
<p><span class="details">Design: </span>Provided by client</p>
<p><span class="details">Featured Customization: </span>Custom graphic applied to each page title</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/the-smarter-message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sassy Mama Hong Kong</title>
		<link>http://wpfab.com/sassy-mama-hong-kong/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sassy-mama-hong-kong</link>
		<comments>http://wpfab.com/sassy-mama-hong-kong/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 18:25:15 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1513</guid>
		<description><![CDATA[Website URL: &#160; sassymamahk.com Theme Used: Genesis Lifestyle Work Performed: &#160;WordPress security enhanced installation, plugin install &#038; configure, theme customization Design: Provided by client Featured Customization: Custom sharing button section at end of each post In February 2011, the ladies at Sassy Hong Kong came to me to help them launch their new sister site, [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.wpfab.com/wp-content/themes/wpfab/images/portfolio/sassymama400.jpg" alt="Sassy Hong Kong" class="aligncenter size-full wp-image-1450" /></p>
<div id="projectdetails">
<p><span class="details">Website URL: </span>&nbsp;<a href="http://www.sassymamahk.com"> sassymamahk.com</a></p>
<p><span class="details">Theme Used: </span>Genesis Lifestyle</p>
<p><span class="details">Work Performed: </span>&nbsp;WordPress security enhanced installation, plugin install &#038; configure, theme customization</p>
<p><span class="details">Design: </span>Provided by client</p>
<p><span class="details">Featured Customization: </span>Custom sharing button section at end of each post</p>
</div>
<p>In February 2011, the ladies at Sassy Hong Kong came to me to help them launch their new sister site, SassyMamaHK. Hester provided me with a detailed project outline and graphics. Hester is a pleasure to work with because of her attention to detail and clear information and instructions she provides me with. </p>
<p>Just like the SassyHongKong site, we again used the Genesis Lifestyle theme. They wanted to replicate the clean, minimalistic look of Sassy Hong Kong.</p>
<p><strong>Featured Customization</strong> Since the ladies have a style all their own, they wanted something other than the typical sharing buttons for Twitter and Facebook on their site. They also wanted to include links to print the current post and to send via email to a friend. Hester provided me with the graphics they wanted to use and I custom coded a section that appears at the end of each of their posts and right above the comments section. Here&#8217;s a screen shot:</p>
<p><img src="http://wpfab.com/wp-content/uploads/2011/09/SassyMaMa-sharing.png" alt="sassymamahk custom sharing buttons" title="SassyMama Custom Sharing Buttons" class="aligncenter size-full wp-image-1537" /></p>
<p>Additional coolness of this customization: the Twitter button automatically shortens the URL of the post that gets sent to Twitter. </p>
<p>The gals liked this custom sharing section so much that we added it to Sassy Hong Kong as well. </p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/sassy-mama-hong-kong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fiduciary Marine Services Limited</title>
		<link>http://wpfab.com/fiduciary-marine-services-limited/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fiduciary-marine-services-limited</link>
		<comments>http://wpfab.com/fiduciary-marine-services-limited/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 18:10:54 +0000</pubDate>
		<dc:creator>Laura</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://wpfab.com/?p=1504</guid>
		<description><![CDATA[Website URL: &#160; marineregistration.com Theme Used: Genesis Enterprise Work Performed: &#160;WordPress security enhanced installation, plugin install &#038; configure, theme customization Design: Asi-Asi Featured Customization: News Feed Page For this site, I teamed up once again with WorkITGibratar, Gibraltar’s social media experts, for their client Fiduciary Marine Services Limited. The clients chose the Genesis Enterprise theme [...]]]></description>
				<content:encoded><![CDATA[<p><img src="http://www.wpfab.com/wp-content/themes/wpfab/images/portfolio/postimg/fidmarinepost.jpg" alt="Fiduciary Marine" class="aligncenter" />
<div id="projectdetails">
<p><span class="details">Website URL: </span>&nbsp;<a href="http://www.marineregistration.com"> marineregistration.com</a></p>
<p><span class="details">Theme Used: </span>Genesis Enterprise</p>
<p><span class="details">Work Performed: </span>&nbsp;WordPress security enhanced installation, plugin install &#038; configure, theme customization</p>
<p><span class="details">Design: </span><a href="http://www.asi-asi-com/"> Asi-Asi</a></p>
<p><span class="details">Featured Customization: </span>News Feed Page</p>
</div>
<p>For this site, I teamed up once again with <a href="http://workitgibraltar.com/">WorkITGibratar</a>, Gibraltar’s social media experts, for their client Fiduciary Marine Services Limited. The clients chose the Genesis Enterprise theme for their site. </p>
<p>I went to work installing WordPress and the needed plugins. We put up a temporary &#8220;coming soon&#8221; page for the site so that we could work on it behind the scenes. Sharon at Asi-Asi Design completed the design, which included large graphic for the top of each page to provide a clear visual representation of the subject of the page.</p>
<p>The client wanted a place to make their newsletters and other documents available for download. To help manage and track the downloads of these documents, I installed the Download Manager plugin. </p>
<p>One special customization I provided is the News Feed Page. I custom coded this page to pull the news feeds from several different sites so that the client could provide industry-related news on their site. </p>
<p>It was a pleasure working with WorkITGibraltar and Asi-Asi again and I look forward to many more happy collaborations. </p>
]]></content:encoded>
			<wfw:commentRss>http://wpfab.com/fiduciary-marine-services-limited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
