<?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>XLD Studios</title>
	<atom:link href="http://www.xldstudios.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xldstudios.com</link>
	<description></description>
	<lastBuildDate>Wed, 09 May 2012 09:57:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How To Add A Twitter Feed To Your Website</title>
		<link>http://www.xldstudios.com/how-to-add-a-twitter-feed-to-your-website/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-add-a-twitter-feed-to-your-website</link>
		<comments>http://www.xldstudios.com/how-to-add-a-twitter-feed-to-your-website/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 12:58:39 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitter Feed]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1291</guid>
		<description><![CDATA[<p>It is very simple to add a Twitter feed to your own website without using Twitter&#8217;s default UI widget, which frankly looks quite ugly. If you want full customization ability, keep on reading and I&#8217;ll show you what to do using a bit of PHP. To pull the Tweets from the Twitter API I have ...</p><p><a href="http://www.xldstudios.com/how-to-add-a-twitter-feed-to-your-website/">How To Add A Twitter Feed To Your Website</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>It is very simple to add a Twitter feed to your own website without using Twitter&#8217;s default UI widget, which frankly looks quite ugly. If you want full customization ability, keep on reading and I&#8217;ll show you what to do using a bit of PHP.<span id="more-1291"></span></p>
<p>To pull the Tweets from the Twitter API I have created a PHP Function with a few parameters in order to give it some extra flexibility. You are for example able to change the username, amount of tweets to show and whether to show or hide the username that appears first in the tweet when it is pulled from the API.</p>
<h2>The Code</h2>
<p>Here is the function in question. If you are using WordPress you should consider turning this into its own plugin so that it is available regardless of the theme, however if you really just need it quickly, drop this into your functions.php file.</p>
<pre escaped="true">function latest_tweets($username, $amount = 2, $removeUserID = true){

    $doc = new DOMDocument();
    $feed = "http://twitter.com/statuses/user_timeline/$username.rss";

    $doc-&gt;load($feed); 

      $outer = '&lt;ul id="tweets"&gt;';

      $i = 1;

      foreach ($doc-&gt;getElementsByTagName('item') as $node) {

        $tweet = $node-&gt;getElementsByTagName('title')-&gt;item(0)-&gt;nodeValue;
        if($removeUserID)
        	$tweet = substr($tweet, stripos($tweet, ':') + 1);

        $tweet = preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@',
              '&lt;a href="$1"&gt;$1&lt;/a&gt;', $tweet);

        $tweet = preg_replace('/@([0-9a-zA-Z]+)/',
              '&lt;a href="http://twitter.com/$1"&gt;@$1&lt;/a&gt;',
              $tweet);

        $outer .= '&lt;li class"tweet"&gt;". $tweet . "&lt;/li&gt;\n';

        if($i++ &gt;= $amount) break;

      }

	$outer .= "&lt;/ul&gt;\n";

    echo $outer;
}</pre>
<h2>Showing the Tweets</h2>
<p>Having created the function, showing the tweets is very easy. The function that you just created can be called as follows:</p>
<pre escaped="true">&lt;?php latest_tweets($username, $amount, $removeUserID); ?&gt;</pre>
<p><code>$username</code> should be your Twitter username.<br />
<code>$amount</code> should be replaced with a number.<br />
<code>$removeUserID</code> can be set to true if you want to remove it or false if you don&#8217;t.</p>
<p>To have the function show the three latest tweets from @ErikBernskiold without showing my username for every tweet, this is how the function would look:</p>
<pre escaped="true">&amp;ls;?php latest_tweets('ErikBernskiold', 5, true); ?&gt;</pre>
<h2>Summing it up</h2>
<p>This short and simple function is flexible enough to allow you to implement this wherever you need and in any content management system that you wish to use it in.</p>
<p>What ways are you using to show Twitter on your website? Sound off in the comments!</p>
<p><a href="http://www.xldstudios.com/how-to-add-a-twitter-feed-to-your-website/">How To Add A Twitter Feed To Your Website</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/how-to-add-a-twitter-feed-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Preview: Lucent</title>
		<link>http://www.xldstudios.com/wordpress-theme-preview-lucent/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-theme-preview-lucent</link>
		<comments>http://www.xldstudios.com/wordpress-theme-preview-lucent/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 19:30:25 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Lucent]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1288</guid>
		<description><![CDATA[<p>Hey folks. Today I wanted to share a theme that we are working on releasing very shortly for purchase at ThemeForest. We are currently going through the final phases of testing it to make sure it works well in different set-ups and once that&#8217;s done, it will be on its way to ThemeForest. In the ...</p><p><a href="http://www.xldstudios.com/wordpress-theme-preview-lucent/">WordPress Theme Preview: Lucent</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Hey folks. Today I wanted to share a theme that we are working on releasing very shortly for purchase at <a href="http://www.themeforest.net/?ref=BernskioldMedia">ThemeForest</a>. We are currently going through the final phases of testing it to make sure it works well in different set-ups and once that&#8217;s done, it will be on its way to ThemeForest.</p>
<p>In the meantime, here&#8217;s a screenshot of the frontpage. Let us know in the comments what you think about it.</p>
<p><a href="http://www.xldstudios.com/wp-content/uploads/2012/04/lucent-theme-design.png"><img class="alignnone  wp-image-1289" title="Lucent WordPress Theme" src="http://www.xldstudios.com/wp-content/uploads/2012/04/lucent-theme-design-700x552.png" alt="Lucent WordPress Theme" width="700" height="552" /></a></p>
<p><a href="http://www.xldstudios.com/wordpress-theme-preview-lucent/">WordPress Theme Preview: Lucent</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/wordpress-theme-preview-lucent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3.2 Available For Download</title>
		<link>http://www.xldstudios.com/wordpress-3-3-2-available-for-download/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-3-3-2-available-for-download</link>
		<comments>http://www.xldstudios.com/wordpress-3-3-2-available-for-download/#comments</comments>
		<pubDate>Sat, 21 Apr 2012 09:18:37 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Maintenance Update]]></category>
		<category><![CDATA[WordPress Update]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1286</guid>
		<description><![CDATA[<p>Last night the WordPress team released WordPress 3.3.2 which is available for download and update in the built-in updater. The release is a bug fix and maintenance release and includes security updates for the following libraries (taken from the WordPress blog post): Plupload (version 1.5.4), which WordPress uses for uploading media. SWFUpload, which WordPress previously ...</p><p><a href="http://www.xldstudios.com/wordpress-3-3-2-available-for-download/">WordPress 3.3.2 Available For Download</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Last night the WordPress team released WordPress 3.3.2 which is available for download and update in the built-in updater. The release is a bug fix and maintenance release and includes security updates for the following libraries (<a href="http://wordpress.org/news/2012/04/wordpress-3-3-2/">taken from the WordPress blog post</a>):</p>
<ul>
<li>Plupload (version 1.5.4), which WordPress uses for uploading media.</li>
<li>SWFUpload, which WordPress previously used for uploading media, and may still be in use by plugins.</li>
<li>SWFObject, which WordPress previously used to embed Flash content, and may still be in use by plugins and themes.</li>
</ul>
<p>The release also addresses the following bugs (<a href="http://wordpress.org/news/2012/04/wordpress-3-3-2/">taken from the official blog post</a>):</p>
<ul>
<li>Limited privilege escalation where a site administrator could deactivate network-wide plugins when running a WordPress network under particular circumstances, disclosed by <a href="http://joncave.co.uk/">Jon Cave</a> of our WordPress core security team, and <a href="http://sixohthree.com/">Adam Backstrom</a>.</li>
<li>Cross-site scripting vulnerability when making URLs clickable, by Jon Cave.</li>
<li>Cross-site scripting vulnerabilities in redirects after posting comments in older browsers, and when filtering URLs. Thanks to <a href="http://www.sneaked.net/">Mauro Gentile</a> for responsibly disclosing these issues to the security team.</li>
</ul>
<p>As always we recommend that you update right away in order to keep your WordPress installation secure and prevent breaches. If you are on our maintenance plan, your site has already been upgraded.</p>
<p><a href="http://www.xldstudios.com/wordpress-3-3-2-available-for-download/">WordPress 3.3.2 Available For Download</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/wordpress-3-3-2-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto-Generating a Select Menu in WordPress With a Custom Menu Walker</title>
		<link>http://www.xldstudios.com/generating-select-menu-in-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=generating-select-menu-in-wordpress</link>
		<comments>http://www.xldstudios.com/generating-select-menu-in-wordpress/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 08:44:20 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Adaptive Design]]></category>
		<category><![CDATA[Custom Menu Walker]]></category>
		<category><![CDATA[Custom Walker]]></category>
		<category><![CDATA[Menu Walker]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Responsive Design]]></category>
		<category><![CDATA[wp_nav_menu]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1226</guid>
		<description><![CDATA[<p>While working on the new website for BestAppSite, I wanted to have the functional &#60;select&#62; drop-down menu for smaller screen sizes, such as for the iPhone. These menus behave nicely and save valuable real-estate when you have many items to present. Creating the menu itself isn&#8217;t very hard in plain HTML. The theory is to ...</p><p><a href="http://www.xldstudios.com/generating-select-menu-in-wordpress/">Auto-Generating a Select Menu in WordPress With a Custom Menu Walker</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>While working on the new website for <a href="http://www.bestappsite.com/">BestAppSite</a>, I wanted to have the functional &lt;select&gt; drop-down menu for smaller screen sizes, such as for the iPhone. These menus behave nicely and save valuable real-estate when you have many items to present.</p>
<p>Creating the menu itself isn&#8217;t very hard in plain HTML. The theory is to add the code for the drop-down underneath the default unordered list menu and then display/hide it using the media queries in the CSS. Couple that with the simple javascript snippet to <a href="http://www.xldstudios.com/javascript-snippet-go-to-site-selected-in-drop-down-menu/">open a URL from a drop-down selection</a>, the menu itself is no problem.<span id="more-1226"></span></p>
<h2>Creating A Custom Menu Walker</h2>
<p>By default, WordPress outputs a menu in an unordered list. To change this, you need to create a custom meny walker function. While its name makes your head spin, it is basically a PHP function that extends and thus overrides the default menu creation function.</p>
<p>Here is the code that I used for BestApp Site which is to be placed in your <em>functions.php</em> file.</p>
<pre escaped="true">/**
 * Custom Menu Walker for Responsive Menus
 *
 * Creates a &lt;select&gt; menu instead of the default
 * unordered list menus.
 *
 **/

class Walker_Responsive_Menu extends Walker_Nav_Menu {

	function start_el(&amp;$output, $item, $depth, $args) {
		global $wp_query;		

		// Create a visual indent in the list if we have a child item.
		$visual_indent = ( $depth ) ? str_repeat('&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;', $depth) : '';

		// Load the item URL
		$attributes .= ! empty( $item-&gt;url ) ? ' value="'   . esc_attr( $item-&gt;url ) .'"' : '';

		$output .= '&lt;form name="menu_selector" method="post" action="#"&gt;'; // Create the form wrapper for the URLs to work.
		$output .= '&lt;select name="url_list" onchange="gotosite()"&gt;'; // Set up the select list and load the javascript function

		$output . = '&lt;option value="" selected="selected" disabled="disabled"&gt;Please select...&lt;/option&gt;'; // Create a default selected item.

		// If we have hierarchy for the item, add the indent, if not, leave it out.
		// Loop through and output each menu item as this.
		if($depth != 0) {
			$item_output .= '&lt;option ' . $attributes .'&gt;'. $visual_indent . apply_filters( 'the_title', $item-&gt;title, $item-&gt;ID ) . '&lt;/option&gt;';
		} else {
			$item_output .= '&lt;option ' . $attributes .'&gt;'.$prepend.apply_filters( 'the_title', $item-&gt;title, $item-&gt;ID ).'&lt;/option&gt;';
		}

		$output .= '&lt;/select&gt;';
		$output .= '&lt;/form&gt;';

		// Make the output happen.
		$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
	}
}</pre>
<p>While the code looks fairly complex, it is really straight forward. I have commented what each section does in the code rather than breaking it apart here.</p>
<h2>Applying The Walker</h2>
<p>In order to display the new menu, we need to call it using the <code><a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu" target="_blank">wp_nav_menu</a></code> function. At the place in your code where you want the menu to display, simply use this code:</p>
<pre escaped="true">&lt;?php wp_nav_menu(array(
	'theme_location' =&gt; 'primary-menu',
	'container' =&gt; false,
	'walker' =&gt; new Walker_Responsive_Menu())
); ?&gt;</pre>
<p>This is a basic implementation of the wp_nav_menu function that adds the custom walker to use for the output You want to change the theme location parameter to the name of the theme location that you have set up in the theme.</p>
<h2>Conclusion and Note</h2>
<p>It is not necessarily very complex to make WordPress generate necessary code for responsive sites as this demonstrates, all because it is well-built from the start and allows you to override default function outputs with custom walkers.</p>
<p>Do note that this is a very simple and almost crude walker function as it omits much of the variables required for all the array parameters for the wp_nav_menu function to work. It will however do this job elegantly.</p>
<p><a href="http://www.xldstudios.com/generating-select-menu-in-wordpress/">Auto-Generating a Select Menu in WordPress With a Custom Menu Walker</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/generating-select-menu-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Easter!</title>
		<link>http://www.xldstudios.com/happy-easter/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=happy-easter</link>
		<comments>http://www.xldstudios.com/happy-easter/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 16:42:16 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Easter]]></category>
		<category><![CDATA[Seasonal Wish]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1221</guid>
		<description><![CDATA[<p>From us here at XLD Studios, I want to wish you a very Happy Easter!</p><p><a href="http://www.xldstudios.com/happy-easter/">Happy Easter!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-1222" title="Happy Easter!" src="http://www.xldstudios.com/wp-content/uploads/2012/04/happy-easter-700x247.jpg" alt="Happy Easter!" width="700" height="247" /></p>
<p>From us here at XLD Studios, I want to wish you a very Happy Easter!</p>
<p><a href="http://www.xldstudios.com/happy-easter/">Happy Easter!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/happy-easter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hey Photographers, Do This Now To Speed Up Your WordPress Site</title>
		<link>http://www.xldstudios.com/hey-photographers-do-this-now-to-speed-up-your-wordpress-site/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hey-photographers-do-this-now-to-speed-up-your-wordpress-site</link>
		<comments>http://www.xldstudios.com/hey-photographers-do-this-now-to-speed-up-your-wordpress-site/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 16:50:31 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Caching]]></category>
		<category><![CDATA[Optimize]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Photographer]]></category>
		<category><![CDATA[Site Speed]]></category>
		<category><![CDATA[Smush.it]]></category>
		<category><![CDATA[Website Speed]]></category>
		<category><![CDATA[WordPress Performance]]></category>
		<category><![CDATA[WP Smush.it]]></category>
		<category><![CDATA[WP Super Cache]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1213</guid>
		<description><![CDATA[<p>Working directly on a photographer&#8217;s website, I always want to spend quite some time on the performance side of things, especially since you could argue that the website is so vital to the photographer getting any business. Unfortunately, many photographers neglect performance when building their own sites in WordPress, so this post is for you ...</p><p><a href="http://www.xldstudios.com/hey-photographers-do-this-now-to-speed-up-your-wordpress-site/">Hey Photographers, Do This Now To Speed Up Your WordPress Site</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Working directly on a photographer&#8217;s website, I always want to spend quite some time on the performance side of things, especially since you could argue that the website is so vital to the photographer getting any business.</p>
<p>Unfortunately, many photographers neglect performance when building their own sites in WordPress, so this post is for you guys. Simple instructions on what you should do to speed up your site (if you are running WordPress that is&#8230;).</p>
<p>How long will this take you? Probably under 15 minutes!<span id="more-1213"></span></p>
<p><img class="alignnone size-medium wp-image-1215" title="WP Super Cache" src="http://www.xldstudios.com/wp-content/uploads/2012/04/wp-supercache-700x222.png" alt="WP Super Cache" width="700" height="222" /></p>
<h2>Install the WP Super Cache Plugin</h2>
<p>If you are only going to do one thing, log into the dashboard and go and search for <a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP Super Cache</a>. This plugin is super simple to set up, all you need to do is to activate it and enable the caching and it will have improved your performance by a lot.</p>
<p><strong>However, </strong>you can easily make the site even faster. By going into the advanced tab of the plugin setting, you will see a bunch of checkboxes that at the end of their description say &#8220;(recommended)&#8221;. Simply check these!</p>
<p>To see how much faster the site loads, log out and reload the page (or use another browser). Isn&#8217;t it wonderful?</p>
<p><img class="alignnone size-medium wp-image-1216" title="WP Smush.it" src="http://www.xldstudios.com/wp-content/uploads/2012/04/wp-smushit-700x144.jpg" alt="WP Smush.it" width="700" height="144" /></p>
<h2>Install the WP Smush.it Plugin</h2>
<p>Another plugin you should install is the <a href="http://wordpress.org/extend/plugins/wp-smushit/" target="_blank">WP Smush.it</a> plugin. It doesn&#8217;t come with a lot of options, in fact, it doesn&#8217;t come with any options. What it will do is run the images you upload through the Smush.it optimizer to scale the images down in size dramatically while retaining the quality.</p>
<p>I know you are a photographer and you must have the best possible image quality and save images at the best quality but give this a try will you. You will likely notice very little degrading in image quality from a before and after. What little you may loose in quality here, you gain in business.</p>
<h2>Why Should I Care About Loading Time?</h2>
<p>I could start by making the point that Google now uses loading time as part of their algorithm, but I&#8217;m not going to (oops, I guess I just did). Regardless of any search engine algorithms, the most important reason here is sheer human behavior.</p>
<p>Visitors are impatient. Don&#8217;t be fooled by your love of your own work. If someone goes to your site to see your photos, they want it to load fast. If it doesn&#8217;t, they will move on. As a direct result of them moving on, you loose a possible sale or client.</p>
<p>Sure, it might be okay when it happens to your best friend, but is it really as okay when the manager of the big company that is looking to hire you can&#8217;t get your site to load in good time? I&#8217;ll let you decide for yourself!</p>
<p>Do you like this post? Why not <a title="RSS Feed" href="http://www.xldstudios.com/feed/" target="_blank">subscribe to our RSS feed</a>, <a title="Become a fan of XLD Studios on Facebook" href="http://www.facebook.com/xldstudios" target="_blank">become a fan on Facebook</a> or <a title="Follow XLD Studios on Twitter" href="http://www.twitter.com/XLDStudios" target="_blank">follow us on Twitter</a>?</p>
<p><a href="http://www.xldstudios.com/hey-photographers-do-this-now-to-speed-up-your-wordpress-site/">Hey Photographers, Do This Now To Speed Up Your WordPress Site</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/hey-photographers-do-this-now-to-speed-up-your-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generate Placeholder Images On The Fly</title>
		<link>http://www.xldstudios.com/generate-placeholder-images-on-the-fly/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=generate-placeholder-images-on-the-fly</link>
		<comments>http://www.xldstudios.com/generate-placeholder-images-on-the-fly/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 14:21:31 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Placehold.it]]></category>
		<category><![CDATA[Placeholder]]></category>
		<category><![CDATA[Placeholder Images]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[Web Service]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1196</guid>
		<description><![CDATA[<p>A few days ago I found a new favorite resource when doing mockups. Often enough you need a placeholder image just to occupy some space while positioning elements and not necessarily when showing clients (don&#8217;t use these placeholders for that). Placehold.it is a service that generates nice and tidy placeholder images on the fly (which ...</p><p><a href="http://www.xldstudios.com/generate-placeholder-images-on-the-fly/">Generate Placeholder Images On The Fly</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>A few days ago I found a new favorite resource when doing mockups. Often enough you need a placeholder image just to occupy some space while positioning elements and not necessarily when showing clients (don&#8217;t use these placeholders for that).</p>
<p><strong><a href="http://placehold.it/" target="_blank">Placehold.it</a></strong> is a service that generates nice and tidy placeholder images on the fly (which can be formatted too if you like). By just using the format and their domain as your image URL, you get a nice-looking placeholder, much better than a blank image tag.</p>
<pre escaped="true" lang="html">&lt;img src="http://placehold.it/350x150"&gt;</pre>
<p><a href="http://www.xldstudios.com/generate-placeholder-images-on-the-fly/">Generate Placeholder Images On The Fly</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/generate-placeholder-images-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the Bootstrap from Twitter To Kick Start Your Projects</title>
		<link>http://www.xldstudios.com/kickstart-projects-with-bootstrap/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kickstart-projects-with-bootstrap</link>
		<comments>http://www.xldstudios.com/kickstart-projects-with-bootstrap/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 16:26:57 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1143</guid>
		<description><![CDATA[<p>Personally, I&#8217;m a big fan of ways to save time when coding, especially when it comes to common interface elements and features. Having used various CSS frameworks before I have just started to include the Bootstrap framework, made by a couple of Twitter employees. Let me share with you why. The Benefits Naturally there are ...</p><p><a href="http://www.xldstudios.com/kickstart-projects-with-bootstrap/">Using the Bootstrap from Twitter To Kick Start Your Projects</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Personally, I&#8217;m a big fan of ways to save time when coding, especially when it comes to common interface elements and features. Having used various CSS frameworks before I have just started to include the <a href="http://twitter.github.com/bootstrap/index.html">Bootstrap</a> framework, made by a couple of Twitter employees. Let me share with you why.<span id="more-1143"></span></p>
<h2>The Benefits</h2>
<p>Naturally there are many benefits to using a framework from the start, but this in particular instance, the Bootstrap has some nice benefits of its own.</p>
<h3>Gorgeous User Interface CSS Styles</h3>
<p>The first thing that struck me with the Bootstrap was that it looks very nice. When designing any clean and simple website that is so very popular these days, the users elements fit right in.</p>
<p>Included are styles for typography elements such as headings, quotes and lists; beautiful and flexible styles for tables and the best part: Very flexible and gorgeous form designs and buttons. The latter two are parts that I enjoy the least when coding a website and it is nice that I can get a good head-start on it with this framework.</p>
<p><img class="alignnone size-medium wp-image-1144" title="Bootstrap" src="http://www.xldstudios.com/wp-content/uploads/2012/02/Screen-Shot-2012-02-04-at-5.03.58-PM-700x146.png" alt="Bootstrap" width="700" height="146" /></p>
<h3>LESS Support</h3>
<p>Changing values in a huge CSS document isn&#8217;t my idea of fun. Luckily you can download a stylesheet file coded using LESS with variables for typography and color to compile into your very own and customized CSS file.</p>
<p>The benefit here is of course that the customization is only done in a few variables, making for a really speedy process.</p>
<h3>Integrated JavaScript Plugins</h3>
<p>Coming to the end of the markup and design process you have envisioned all sorts of cool javascript effects. While there are many plugins out there to simply include in your project, styling them and making them look integrated can take quite a long while.</p>
<p>What I like about Bootstrap is that it comes with everything from flexible alert messages to modal windows (think lightbox), tooltips, carousels and all the fun other JavaScript effects that are now quickly becoming must haves.</p>
<h2>Where To Get Bootstrap?</h2>
<p>The Bootstrap framework is available from its very <a href="http://twitter.github.com/bootstrap/javascript.html" target="_blank">own Github section</a> along with demos of all the available styles and plugins. If you like you can view a series of forks and follow the project on Github.</p>
<p><a href="http://www.xldstudios.com/kickstart-projects-with-bootstrap/">Using the Bootstrap from Twitter To Kick Start Your Projects</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/kickstart-projects-with-bootstrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launching A New Website For FocusOnNature</title>
		<link>http://www.xldstudios.com/launching-a-new-website-for-focusonnature/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=launching-a-new-website-for-focusonnature</link>
		<comments>http://www.xldstudios.com/launching-a-new-website-for-focusonnature/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 16:55:32 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[Case Study]]></category>
		<category><![CDATA[Custom Post Types]]></category>
		<category><![CDATA[Einar Erlendsson]]></category>
		<category><![CDATA[FocusOnNature]]></category>
		<category><![CDATA[Gravity Forms]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=1078</guid>
		<description><![CDATA[<p>I&#8217;m very pleased to share the latest website that we are launching with you. During December and January we have been working with Einar Erlendsson to create a new and professional web experience for FocusOnNature, his company that runs photography workshops in beautiful Iceland. Einar approached us in November when he had realized that building ...</p><p><a href="http://www.xldstudios.com/launching-a-new-website-for-focusonnature/">Launching A New Website For FocusOnNature</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very pleased to share the latest website that we are launching with you. During December and January we have been working with Einar Erlendsson to create a new and professional web experience for <a href="http://www.focusonnature.is/?utm_source=xldstudios&amp;utm_medium=blog&amp;utm_campaign=new_website_post">FocusOnNature</a>, his company that runs photography workshops in beautiful Iceland.</p>
<p>Einar approached us in November when he had realized that building a site himself would have been too time consuming. His requests were clear. A clean and professional design that highlighted the gorgeous photography that frankly speaks for itself.</p>
<blockquote class="aligncenter"><p>I could not have imagined how professionally Erik worked and how great our co-operation would be making the new FocusOnNature in Iceland website.
<p><cite>- Einar Erlendsson, FocusOnNature</cite></p>
</blockquote>
<p><span id="more-1078"></span></p>
<p><a href="http://www.xldstudios.com/wp-content/uploads/2012/01/focusonnature.png"><img width="700"  alt="" src="http://www.xldstudios.com/wp-content/themes/xldv6/includes/timthumb.php?src=/wp-content/uploads/2012/01/focusonnature.png&amp;w=700&amp;zc=1" /></a></p>
<h2>WordPress With Custom Post Types</h2>
<p>The new FocusOnNature website is built solely upon WordPress, our favorite content management system because it is simple to implement, very resource friendly and most of all, easy for our clients to learn and understand.</p>
<p>To complement the standard WordPress features we implemented several custom post types to allow easy adding of Workshops, Testimonials and Sponsors. A major goal for the project was to make it very easy to keep the site easily maintained for future workshop series which I would say we accomplished.</p>
<h2>Registration, Newsletter and Dual Languages</h2>
<p>One of the challenges of this project was to make the website work for two categories of visitors. English speakers who were looking for the main summer workshops and Icelandic natives who want to attend the local seminar series that FocusOnNature arrange during the winter.</p>
<p>For this to come together, we implemented different categorization systems for workshops allowing them to be entered from the same section all the time, but sorted differently depending on the workshop type. This does not force FocusOnNature to use one language for all posts but can mix and match as necessary for the workshops.</p>
<p>Registration was another area which was very important. We wanted to make it easy for prospective attendees to sign up for a workshop. We integrated the custom post types with a registration form powered by the advanced Gravity Forms plugin to pre-select the workshop from the page the attendee clicked on.</p>
<p>Finally we worked with Einar and FocusOnNature to integrate the WordPress website and registration system with MailChimp, one of the most user friendly newsletter services available. This has resulted in FocusOnNature being able to keep better track of their newsletter subscribers and helping them keep their list up to date.</p>
<p><a href="http://www.xldstudios.com/wp-content/uploads/2012/01/focusonnature-2.png"><img width="700"  alt="" src="http://www.xldstudios.com/wp-content/themes/xldv6/includes/timthumb.php?src=/wp-content/uploads/2012/01/focusonnature-2.png&amp;w=700&amp;zc=1" /></a></p>
<h2>Conclusion</h2>
<p>We are very pleased to have been able to work with Einar and FocusOnNature on this website project and are excited to being able to launch the website after months of hard work tweaking the site and getting it ready for the public.</p>
<p>Now that the site is out there we hope that it is being well received by the professional photographic community as well the world-class instructors that FocusOnNature brings to Iceland to hold workshops.</p>
<p><a href="http://www.xldstudios.com/launching-a-new-website-for-focusonnature/">Launching A New Website For FocusOnNature</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/launching-a-new-website-for-focusonnature/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrade Your WordPress Installations to 3.3.1</title>
		<link>http://www.xldstudios.com/upgrade-your-wordpress-installations-to-3-3-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upgrade-your-wordpress-installations-to-3-3-1</link>
		<comments>http://www.xldstudios.com/upgrade-your-wordpress-installations-to-3-3-1/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 16:36:46 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Security Update]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Website Update]]></category>
		<category><![CDATA[WordPress 3.3.1]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=991</guid>
		<description><![CDATA[<p>Just yesterday a new version of WordPress was released. WordPress 3.3.1 is a security update that comes with 15 nice bug and security patches. Since this update doesn&#8217;t alter the database in any way it is a very straight forward one that should be foolproof. As always we recommend backing up your files and database ...</p><p><a href="http://www.xldstudios.com/upgrade-your-wordpress-installations-to-3-3-1/">Upgrade Your WordPress Installations to 3.3.1</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Just yesterday a new version of WordPress was released. WordPress 3.3.1 is a security update that comes with 15 nice bug and security patches. Since this update doesn&#8217;t alter the database in any way it is a very straight forward one that should be foolproof.</p>
<p>As always we recommend backing up your files and database before doing any update on your site. All of our clients on our WordPress Updating Plan have already been upgraded safely to WordPress 3.3.1.</p>
<p><a href="http://www.xldstudios.com/upgrade-your-wordpress-installations-to-3-3-1/">Upgrade Your WordPress Installations to 3.3.1</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/upgrade-your-wordpress-installations-to-3-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add a Banner To Your WordPres Plugin Page</title>
		<link>http://www.xldstudios.com/how-to-add-a-banner-to-your-wordpres-plugin-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-add-a-banner-to-your-wordpres-plugin-page</link>
		<comments>http://www.xldstudios.com/how-to-add-a-banner-to-your-wordpres-plugin-page/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 14:03:57 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Plugin Banner]]></category>
		<category><![CDATA[Plugin Directory]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress Banner]]></category>
		<category><![CDATA[WordPress.org]]></category>
		<category><![CDATA[WordPress.org Website]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=982</guid>
		<description><![CDATA[<p>Last week, Matt Mullenweg noted in a post over on the official WordPress Development Blog that they are experimenting with a new feature on the plugin pages of the official plugin directory. You may already have noted a grey field above all plugins which has the title and a short description of it. New now however ...</p><p><a href="http://www.xldstudios.com/how-to-add-a-banner-to-your-wordpres-plugin-page/">How To Add a Banner To Your WordPres Plugin Page</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Last week, Matt Mullenweg <a href="http://wpdevel.wordpress.com/2011/12/21/been-giving-a-lot-of-thought-to-how/">noted in a post over on the official WordPress Development Blog</a> that they are experimenting with a new feature on the plugin pages of the official plugin directory. You may already have noted a grey field above all plugins which has the title and a short description of it.</p>
<p>New now however is the ability to add a banner to your plugin page just above this. For now this is just an experiment which as Matt notes means that the size of the banner and the look can change at any time. Since it is being very well received, I would assume that the idea is not going away. Read on to learn how you can add a banner of your own and see some examples.<span id="more-982"></span></p>
<h2>How Do You Add The Banner?</h2>
<p>Adding one to your own plugin is very simple and requires just a few steps but makes a big difference for your plugin page.</p>
<ol>
<li>Make an image that is 772x250px. This image should be saved in jpg or png.</li>
<li>Save the image that you just created into a new folder called &#8220;assets&#8221; in your main svn folder. Note that you shouldn&#8217;t create this assets folder in the trunk of your plugin but rather in the root folder. Name the file banner-772&#215;250.jpg (if you&#8217;re saving as a jpg) or banner-772&#215;250.png (if you&#8217;re using a png) and you&#8217;re good to go!</li>
</ol>
<p>The next time the plugin directory refreshes (approx. 15 minutes) your brand new beautiful image will show up on your plugin make.</p>
<h2>Examples Of Beautiful Plugin Pages</h2>
<p>Here are some examples of beautifully made plugin page banners to get your creativity started.</p>
<div id="attachment_983" class="wp-caption aligncenter" style="width: 710px"><img class="size-medium wp-image-983" title="Buddy Press" src="http://www.xldstudios.com/wp-content/uploads/2011/12/buddypress-700x356.png" alt="Buddy Press" width="700" height="356" />
<p class="wp-caption-text">Buddy Press</p>
</div>
<div id="attachment_984" class="wp-caption aligncenter" style="width: 710px"><img class="size-medium wp-image-984" title="WordPress SEO by Yoast" src="http://www.xldstudios.com/wp-content/uploads/2011/12/wordpress-seo-by-yoast-700x352.png" alt="WordPress SEO by Yoast" width="700" height="352" />
<p class="wp-caption-text">WordPress SEO by Yoast</p>
</div>
<div id="attachment_985" class="wp-caption aligncenter" style="width: 710px"><img class="size-medium wp-image-985" title="ReciPress" src="http://www.xldstudios.com/wp-content/uploads/2011/12/recipress-700x358.png" alt="ReciPress" width="700" height="358" />
<p class="wp-caption-text">ReciPress</p>
</div>
<div id="attachment_986" class="wp-caption aligncenter" style="width: 710px"><img class="size-medium wp-image-986" title="All in One SEO" src="http://www.xldstudios.com/wp-content/uploads/2011/12/allinoneseo-700x353.png" alt="All in One SEO" width="700" height="353" />
<p class="wp-caption-text">All in One SEO</p>
</div>
<div id="attachment_987" class="wp-caption aligncenter" style="width: 710px"><img class="size-medium wp-image-987" title="bbPress" src="http://www.xldstudios.com/wp-content/uploads/2011/12/bbpress-700x357.png" alt="bbPress" width="700" height="357" />
<p class="wp-caption-text">bbPress</p>
</div>
<div id="attachment_988" class="wp-caption aligncenter" style="width: 710px"><img class="size-medium wp-image-988" title="Admin Management Extended" src="http://www.xldstudios.com/wp-content/uploads/2011/12/adminmgmnt-extended-700x356.png" alt="Admin Management Extended" width="700" height="356" />
<p class="wp-caption-text">Admin Management Extended</p>
</div>
<div id="attachment_989" class="wp-caption aligncenter" style="width: 710px"><img class="size-medium wp-image-989" title="ManageWP" src="http://www.xldstudios.com/wp-content/uploads/2011/12/managewp-700x357.png" alt="ManageWP" width="700" height="357" />
<p class="wp-caption-text">ManageWP</p>
</div>
<p><a href="http://www.xldstudios.com/how-to-add-a-banner-to-your-wordpres-plugin-page/">How To Add a Banner To Your WordPres Plugin Page</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/how-to-add-a-banner-to-your-wordpres-plugin-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We Launch A New Website For Kearns Brothers</title>
		<link>http://www.xldstudios.com/we-launch-a-new-website-for-kearns-brothers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=we-launch-a-new-website-for-kearns-brothers</link>
		<comments>http://www.xldstudios.com/we-launch-a-new-website-for-kearns-brothers/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 12:46:04 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[Case Study]]></category>
		<category><![CDATA[Client Project]]></category>
		<category><![CDATA[Client Work]]></category>
		<category><![CDATA[Kearns Brothers]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=962</guid>
		<description><![CDATA[<p>I&#8217;m very happy to be able to share with you that we have just launched a new website for Kearns Brothers, a construction company in Detroit, MI that specializes in Roofing, Siding and Windows. During the fall we have been working with Kearns Brothers to refresh their old website both in terms of the look and ...</p><p><a href="http://www.xldstudios.com/we-launch-a-new-website-for-kearns-brothers/">We Launch A New Website For Kearns Brothers</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very happy to be able to share with you that we have just launched a <a href="http://www.kearnsbrothers.com/">new website for Kearns Brothers</a>, a construction company in Detroit, MI that specializes in Roofing, Siding and Windows. During the fall we have been working with Kearns Brothers to refresh their old website both in terms of the look and the functionality and we are all very pleased with the result.</p>
<p><span id="more-962"></span></p>
<p><img class="aligncenter size-medium wp-image-963" title="Kearns Brothers" src="http://www.xldstudios.com/wp-content/uploads/2011/12/kearnsbrothers-676x700.jpg" alt="Kearns Brothers" width="676" height="700" /></p>
<h2>Extending Their Business To The Web</h2>
<p>While much thought had gone into <a href="http://www.kearnsbrothers.com/">Kearns Brothers</a> previous website it was lacking the style and extras to make it easy to navigate and easy to contact them in order to express interest in their services.</p>
<p>Launching last week, the new website helps customers quickly find the service they are interested in and contact Kearns Brothers for more information. It also helps educate customers on what product may be right for them and help them think their needs through prior to making a decision.</p>
<p>Being able to market directly to interested customers is something that we wanted to take advantage of for Kearns Brothers and therefore we integrated a form where users can enter their email address to receive specials from the company. Behind the scenes, this is powered by <a href="http://www.mailchimp.com/">MailChimp</a>.</p>
<h2>Built With Modern Technologies</h2>
<p>Naturally the new Kearns Brothers website is built using the latest HTML5 and CSS3 techniques while still making sure the site works fine in all modern browsers.</p>
<p>Apart from the new front end user experience, the new site has been created to run on <a href="http://www.wordpress.org/">WordPress</a> making it easy for Kearns Brothers to update the website when they require with new specials, information and news.</p>
<h2>What Kearns Brothers Is Saying</h2>
<p>Our customers is what we value the most here at XLD Studios and we are only happy if they are happy. We are very pleased that Kearns Brothers is happy with their new website and what we are doing for them. Here is a note that we got from Kearns Brothers after launching the website.</p>
<blockquote class="aligncenter"><p>I wanted to Thank you and XLD studios for the wonderful job on our website. While I am pleased that the site is developing into exactly what we had hoped it would become, it has been your wonderful eye for detail, creative suggestions, patience, expedient response time and effective communication that will keep us dedicated customers of your services.</p>
<p>We are not an easy company to work for. Our work is often complex and extremely multi-faceted and demands placed on us also require that we be able to work with individuals who are accommodating of those challenges and capable of quickly adapting to OUR work flow. XLD studios has been the ONLY company that we have worked with and have searched for (for YEARS) that has met those demands and proven to be our one-stop shop for everything related to our internet presence and communication savvy.</p>
<p>We feel so very fortunate to be recipients of your exceptional customer service and look forward to continually providing OUR customers a great end-user experience under your innovative direction.
<p><cite>- Sheree Kearns, Kearns Brothers</cite></p>
</blockquote>
<p><a href="http://www.xldstudios.com/we-launch-a-new-website-for-kearns-brothers/">We Launch A New Website For Kearns Brothers</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/we-launch-a-new-website-for-kearns-brothers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Snippets To Speed Up Your CSS Coding</title>
		<link>http://www.xldstudios.com/5-snippets-to-speed-up-your-css-coding/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=5-snippets-to-speed-up-your-css-coding</link>
		<comments>http://www.xldstudios.com/5-snippets-to-speed-up-your-css-coding/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 12:49:52 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Bits of Code]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Quicker Coding]]></category>
		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=955</guid>
		<description><![CDATA[<p>Speeding up coding is not always by typing faster or saving frequently used snippets so that you can reuse them (even though this is a brilliant idea). It is also about reducing repetitiveness by creating objects that you can paste into your stylesheet for elements you use over and over again in the same way. ...</p><p><a href="http://www.xldstudios.com/5-snippets-to-speed-up-your-css-coding/">5 Snippets To Speed Up Your CSS Coding</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Speeding up coding is not always by typing faster or saving frequently used snippets so that you can reuse them (even though this is a brilliant idea). It is also about reducing repetitiveness by creating objects that you can paste into your stylesheet for elements you use over and over again in the same way.</p>
<p>In this article I want to share with you ten CSS snippets that will save you from having to write the same code over and over again in the same project.</p>
<p><span id="more-955"></span></p>
<h2>1. Simplifying The Navigation Code</h2>
<p>This is based on a post over at CSS Wizardry that talks about <em><a href="http://csswizardry.com/2011/09/the-nav-abstraction/">The nav abstraction</a></em>, Most projects I work on contains at least one horizontal navigation element and most of the time two if not three. If I could make an abstraction with the most common parts of the navigation element, I could save myself a ton of code if I just included that class.</p>
<pre escaped="true">.nav { list-style: none; margin: 0; padding: 0; }

	.nav ul { margin: 0; padding: 0; }

	.nav li { display: inline; }

	.nav a { display: inline-block; }</pre>
<p>All that is now required is to append the nav class to any object that we want to make a horizontal list of items without the leading bullet.</p>
<h2>2. Generalizing the Box Code</h2>
<p>Each time you want to make a simple box with a background color for some objects within you will probably add both margin and padding to it. Why not abstract this into a <em>.box</em> class like so:</p>
<pre escaped="true">.box {
	padding: 1.5em;
	margin: 0 0 1.5em 0;
}
	.box &gt; :last-child {
		margin-bottom:0;
	}</pre>
<p>We also want to make sure here that the last child object inside the box doesn&#8217;t interfere with the padding of the main box by having its own bottom margin set. To fix this, we simple set it to zero, making sure it always looks consistent.</p>
<h2>3. Using the Media Object Over and Over Again</h2>
<p>Based on <a href="http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/">a post by Nicole Sullivan at her blog Stubbornella</a>, the Media object is one of these types of objects that we as designers and developers like to use all over again in one form or the other. It is simple an image floated to the left and some text over on the right (that is not wrapping around the image).</p>
<p>The media object solves this neatly by abstracting this into a simple pattern:</p>
<pre escaped="true">/**
 * Media Object
 * Based on: stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/
 * Markup:

 &lt;div class="media"&gt;
   &lt;a href="#" class="img"&gt;
     &lt;img src="#" alt="Image!" /&gt;
   &lt;/a&gt;
   &lt;div class="body"&gt;
     Some text to go with this image.
   &lt;/div&gt;
 &lt;/div&gt;
 **/

.media {
	margin:10px;
}

	.media,
	.body {
		overflow:hidden;
		_overflow:visible;
		zoom:1;
	}

	.media .img {
		float:left;
		margin-right: 10px;
	}

		.media .img img{
			display:block;
		}</pre>
<h2>4. A Great CSS Reset Code</h2>
<p>By being able to start your project with elements behaving as you would like them to is a great benefit. It also saves many lines of code where you otherwise would be resetting an object each and every time. As <a href="http://www.xldstudios.com/using-a-proper-css-reset-vs-quick-blunt-wildcard-reset/">I have said before</a>, I favor the <a href="http://meyerweb.com/eric/tools/css/reset/">Eric Meyer reset code</a> which with a little tweaking for each project makes a great starting point for your design.</p>
<pre escaped="true">/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}</pre>
<h2>5. Building In Adaptive Columns</h2>
<p>While a system like the <a href="http://www.960.gs">960 grid system</a> is perfect for you as a developer, your users may find it a bit odd and clunky to work with. The adaptive columns are easier to grasp and are easy to include in your project. All your users need to do is think about how many columns they want to fit within a space in terms of fractions.</p>
<pre escaped="true">/**
 * Adaptive Columns
 **/

.one_half,.one_third,.two_third,.three_fourth,.one_fourth,.one_fifth,.two_fifth,.three_fifth,.four_fifth,.one_sixth,.five_sixth{position:relative;margin-right:4%;float:left;min-height:1px;height:auto!important}
.one_fourth{width:22%}
.three_fourth{width:74%}
.one_fifth{width:16.8%}
.two_fifth{width:37.6%}
.three_fifth{width:58.4%}
.four_fifth{width:79.2%}
.one_sixth{width:13.3333%}
.three_sixth{width:47.9998%}
.five_sixth{width:82.6665%}
.last{margin-right:0!important;clear:right}
.clearboth{clear:both;display:block;font-size:0;height:0;line-height:0;width:100%}
.one_half .one_half{margin-right:8.3333%;width:45.8333%}
.one_half .one_third{margin-right:8.3333%;width:27.7778%}
.one_half .two_third{margin-right:8.3333%;width:63.8889%}
.two_third .one_third{margin-right:6.1224%;width:29.2517%}
.two_third .two_third{margin-right:6.1224%;width:64.6258%}
.two_third .one_fourth{margin-right:6.1224%;width:20.4082%}
.one_half,.two_fourth{width:48%}
.one_third,.two_sixth{width:30.6666%}
.two_third,.four_sixth{width:65.3332%}</pre>
<h2>Conclusion</h2>
<p>Saving these snippets in an application such as <a href="http://www.snippetsapp.com/">Snippets</a>, <a href="http://www.smilesoftware.com/TextExpander/">TextExpander</a> or right within <a href="http://panic.com/coda/">Coda</a> or your favorite editor is a good way to have them at hand for when you need them to save yourself a whole lot of trouble and bloat in your code.</p>
<p><a href="http://www.xldstudios.com/5-snippets-to-speed-up-your-css-coding/">5 Snippets To Speed Up Your CSS Coding</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/5-snippets-to-speed-up-your-css-coding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why We As WordPress Theme Developers Need to Make Theme Options Pages Less Bloated</title>
		<link>http://www.xldstudios.com/less-bloated-theme-options/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=less-bloated-theme-options</link>
		<comments>http://www.xldstudios.com/less-bloated-theme-options/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 10:51:21 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[Bloat]]></category>
		<category><![CDATA[Bloatware]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Theme Options]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[WordPress Theme Options]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=951</guid>
		<description><![CDATA[<p>Preparing our own custom WordPress framework we have been looking hard at other WordPress themes out  there both free and paid. Apart from noticing a big difference in coding between the free and paid themes where paid themes usually adhere less to WordPress practices it is obvious that theme options pages for paid themes are ...</p><p><a href="http://www.xldstudios.com/less-bloated-theme-options/">Why We As WordPress Theme Developers Need to Make Theme Options Pages Less Bloated</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Preparing our own custom WordPress framework we have been looking hard at other WordPress themes out  there both free and paid. Apart from noticing a big difference in coding between the free and paid themes where paid themes usually adhere less to WordPress practices it is obvious that theme options pages for paid themes are becoming increasingly bloated.</p>
<p>In this article I want to explain why we as a WordPress theme developers can and should not contribute to making theme options pages even more bloated than they are. In contrary, we need to step away from the current bad practice and start utilizing what comes with WordPress.</p>
<p><span id="more-951"></span></p>
<h2>Using Bloated Theme Options Panels Makes WordPress Segmented and Unintuitive As A Platform And Community</h2>
<p>Let&#8217;s start strongly right away. With everyone having different options layouts with different user interfaces (still within the WordPress frame) and the amount of settings varying so broadly across themes it contributes to the end user becoming increasingly confused. Instead of there being one standard way which you get when using WordPress, the entire WordPress experience is different from one theme to another.</p>
<p>Have you tried directing a user to a normal WordPress-workflow, only to realize that the theme they are using overrides it with a custom setting somewhere? The purpose of doing so is hard for me to grasp and it is very frustrating to be put in the situation, both as a designer/developer but also as the end user.</p>
<p>The worst part is that it fragments the community as a whole. Users have a much harder time moving from one theme to another because it changes the dashboard tremendously.</p>
<h2>Not Using Native Features Requires More Work After WordPress Core Updates</h2>
<p>Whenever you stray from using the functions that WordPress supports natively you will inevitably end up having to rewrite parts of your theme for new versions. Part of the beauty of WordPress is that the core developers have a very good way of thinking when it comes to building WordPress. There is a great chance that the theme you build today won&#8217;t <em>have to be</em> updated in many years. By using a bloated options panel though, you force yourself into more work when core updates.</p>
<p>Even though this seems to be only a problem for the developer that chooses this bad practice, it creates a problem for the users. You want theme updates to be as painless as the core update is today. Suddenly having to change a major way that your theme works is not user friendly.</p>
<h2>It Blurs The Line Between Plugins and Themes And Makes It Harder To Disable Features</h2>
<p>Currently the way I see it, there is a very clear line between what is plugin territory and what is theme territory. While it is as easy for a developer to write a plugin as it is to embed it in a theme, embedding a feature in a theme is a sure way of making it harder for the user to disable the feature if he or she doesn&#8217;t want it.</p>
<p>Some of the most bloated options panels lets the user do many things that is best served by plugins such as Caching, Analytics, SEO and more. The goal of a WordPress theme shouldn&#8217;t be to replace all possible plugins and save the user from having to install a plugin.</p>
<h2>What Can We Do To Prevent Bloated Theme Options Pages?</h2>
<p>As a community we can choose to adhere to the Theme Review guidelines that were drawn up for the free themes repository. These guidelines are very clear on what is best handled by themes compared to plugins and are very specific even down to how a theme should be coded.</p>
<p>Giving the users a consistent experience is something we can gain from, especially when there are core features present that can do the work and are already in the core codebase. Why reduce performance and usability by reinventing the wheel in this case?</p>
<p>Let&#8217;s take responsibility and make sure the standards don&#8217;t drop. If the WordPress community would remain high-quality and use the same practices, users would notice and keep choosing WordPress and ourselves for their websites, growing all of our businesses.</p>
<p><a href="http://www.xldstudios.com/less-bloated-theme-options/">Why We As WordPress Theme Developers Need to Make Theme Options Pages Less Bloated</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/less-bloated-theme-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas!</title>
		<link>http://www.xldstudios.com/merry-christmas/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=merry-christmas</link>
		<comments>http://www.xldstudios.com/merry-christmas/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 09:00:55 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Greeting]]></category>
		<category><![CDATA[Merry Christmas]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=875</guid>
		<description><![CDATA[<p>I would like to take a moment and wish you all a very merry christmas today filled with lots of joy and good spirits. Personally I am off to the annual family gathering and will make sure to enjoy the company, christmas food and of course all the lovely christmas candy. If you have something ...</p><p><a href="http://www.xldstudios.com/merry-christmas/">Merry Christmas!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I would like to take a moment and wish you all a very merry christmas today filled with lots of joy and good spirits. Personally I am off to the annual family gathering and will make sure to enjoy the company, christmas food and of course all the lovely christmas candy. If you have something special on your wish list, I hope that you get just that!</p>
<p>Once again from me and on behalf of every person we bring in to work on our projects, <strong>a very merry christmas</strong>!</p>
<p><a href="http://www.xldstudios.com/merry-christmas/">Merry Christmas!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Something Is Coming This Week!</title>
		<link>http://www.xldstudios.com/something-is-coming-this-week/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=something-is-coming-this-week</link>
		<comments>http://www.xldstudios.com/something-is-coming-this-week/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 06:00:35 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Tease]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=918</guid>
		<description><![CDATA[<p>Major tease today, I know! We are gearing up to release something by the end of this week as a christmas gift to all of you. I won&#8217;t say much about what it is (although if you look at the thumbnails you could hazard a guess) or give you any more specifics. Instead, check back ...</p><p><a href="http://www.xldstudios.com/something-is-coming-this-week/">Something Is Coming This Week!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Major tease today, I know! We are gearing up to release something by the end of this week as a christmas gift to all of you. I won&#8217;t say much about what it is (although if you look at the thumbnails you could hazard a guess) or give you any more specifics.</p>
<p>Instead, check back here by the end of the week and there should be something cool ready and waiting for you.</p>
<p><a href="http://www.xldstudios.com/something-is-coming-this-week/">Something Is Coming This Week!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/something-is-coming-this-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An iPhone 4 Built With Pure CSS3? Yep, it is true!</title>
		<link>http://www.xldstudios.com/an-iphone-4-built-with-pure-css3-yep-it-is-true/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=an-iphone-4-built-with-pure-css3-yep-it-is-true</link>
		<comments>http://www.xldstudios.com/an-iphone-4-built-with-pure-css3-yep-it-is-true/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 14:59:52 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[iPhone 4]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=915</guid>
		<description><![CDATA[<p>I came across this cool project earlier this morning. Someone has spent time and modeled a full iPhone 4 complete with a working home button, sleep/wake button and lock screen slider using just HTML5/CSS3. No images or svgs. Just javascript and CSS3! Of course it is completely useless but it does prove just how powerful ...</p><p><a href="http://www.xldstudios.com/an-iphone-4-built-with-pure-css3-yep-it-is-true/">An iPhone 4 Built With Pure CSS3? Yep, it is true!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I came across this cool project earlier this morning. Someone has spent time and <a href="http://tjrus.com/iphone">modeled a full iPhone 4</a> complete with a working home button, sleep/wake button and lock screen slider using just HTML5/CSS3. No images or svgs. Just javascript and CSS3!</p>
<p>Of course it is completely useless but it does prove just how powerful these new technologies are getting and let&#8217;s face it: It&#8217;s pretty cool!</p>
<p><strong><a href="http://tjrus.com/iphone">Watch the demo »</a></strong></p>
<p><a href="http://www.xldstudios.com/an-iphone-4-built-with-pure-css3-yep-it-is-true/">An iPhone 4 Built With Pure CSS3? Yep, it is true!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/an-iphone-4-built-with-pure-css3-yep-it-is-true/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show Content Only To Visitors Coming From a Search Engine</title>
		<link>http://www.xldstudios.com/show-content-search-engine-visitors/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=show-content-search-engine-visitors</link>
		<comments>http://www.xldstudios.com/show-content-search-engine-visitors/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 09:03:11 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[AOL]]></category>
		<category><![CDATA[Ask]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Coding Trick]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Search Engine Referral]]></category>
		<category><![CDATA[Target Content]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=912</guid>
		<description><![CDATA[<p>Displaying a message to visitors coming from search engines can sometimes be beneficial. It can allow you to show them targeted links on where to go to next or perhaps increase the call to action on the page that they land on. Either way, it allows you to more specifically build a website based on ...</p><p><a href="http://www.xldstudios.com/show-content-search-engine-visitors/">Show Content Only To Visitors Coming From a Search Engine</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Displaying a message to visitors coming from search engines can sometimes be beneficial. It can allow you to show them targeted links on where to go to next or perhaps increase the call to action on the page that they land on. Either way, it allows you to more specifically build a website based on the nature of the users that visit it.<span id="more-912"></span></p>
<p>Showing the content is just a matter of using a little PHP snippet that looks for the URL of common search engines from the referrer agent that is passed along to the server. If it matches, we display the content that you want and if it doesn&#8217;t, we don&#8217;t: Simple!</p>
<pre escaped="true" lang="php" line="1">&lt;?php
   if (preg_match(’/^http:\/\/(\w+\.)?(google|bing|yahoo|aol|ask)\./’,$_SERVER[’HTTP_REFERER’]) == 1) :
?&gt;
Content that you want displayed to search engine visitors only should go right here.
&lt;?php endif; ?&gt;</pre>
<p><a href="http://www.xldstudios.com/show-content-search-engine-visitors/">Show Content Only To Visitors Coming From a Search Engine</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/show-content-search-engine-visitors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Out Smashing Magazine&#8217;s Book Bundles</title>
		<link>http://www.xldstudios.com/check-out-smashing-magazines-book-bundles/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=check-out-smashing-magazines-book-bundles</link>
		<comments>http://www.xldstudios.com/check-out-smashing-magazines-book-bundles/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 18:34:15 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Bundle]]></category>
		<category><![CDATA[Christmas Bundle]]></category>
		<category><![CDATA[Christmas Special]]></category>
		<category><![CDATA[Deal]]></category>
		<category><![CDATA[Smashing Magazine]]></category>
		<category><![CDATA[Special Deal]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=908</guid>
		<description><![CDATA[<p>The fine folks over at Smashing Magazine (you&#8217;re reading that site right?) are selling some special Christmas book bundles in their shop. There is only one special bundle available per day at the special price and today they are offering the WordPress bundle (only until midnight central european time though) but will be followed up ...</p><p><a href="http://www.xldstudios.com/check-out-smashing-magazines-book-bundles/">Check Out Smashing Magazine&#8217;s Book Bundles</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>The fine folks over at Smashing Magazine (you&#8217;re reading that site right?) are selling some special Christmas book bundles in their shop. There is only one special bundle available per day at the special price and today they are offering the <a href="https://shop.smashingmagazine.com/christmas">WordPress bundle</a> (only until midnight central european time though) but will be followed up with many other nice bundles.</p>
<p>All of the bundles have some really nice books in them and I&#8217;d consider getting one which is in an area where you want to learn more, maybe the corporate bundle tomorrow.</p>
<p><a href="http://www.xldstudios.com/check-out-smashing-magazines-book-bundles/">Check Out Smashing Magazine&#8217;s Book Bundles</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/check-out-smashing-magazines-book-bundles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 Now Released!</title>
		<link>http://www.xldstudios.com/wordpress-3-3-now-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-3-3-now-released</link>
		<comments>http://www.xldstudios.com/wordpress-3-3-now-released/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 16:26:20 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[WordPress 3.3]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=905</guid>
		<description><![CDATA[<p>Late yesterday night the latest version of WordPress (3.3) was released. As usual, it is available from the auto-updating feature built right into WordPress. We recommend everyone to upgrade right away as the new version contains important bug and security fixes. Other nice features include UI enhancements and developer enhancements which you can read more ...</p><p><a href="http://www.xldstudios.com/wordpress-3-3-now-released/">WordPress 3.3 Now Released!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Late yesterday night the latest version of WordPress (3.3) was released. As usual, it is available from the auto-updating feature built right into WordPress. We recommend everyone to upgrade right away as the new version contains important bug and security fixes. Other nice features include UI enhancements and developer enhancements which you can <a href="http://www.xldstudios.com/4-new-and-exciting-features-in-wordpress-3-3/">read more about here</a>.</p>
<p>As usual make sure you backup at least your database (preferably your files too) before pushing the update button to be able to roll back if anything unexpected happens.</p>
<p><a href="http://www.xldstudios.com/wordpress-3-3-now-released/">WordPress 3.3 Now Released!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/wordpress-3-3-now-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using a Proper CSS Reset vs. Quick Blunt Wildcard Reset</title>
		<link>http://www.xldstudios.com/using-a-proper-css-reset-vs-quick-blunt-wildcard-reset/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-a-proper-css-reset-vs-quick-blunt-wildcard-reset</link>
		<comments>http://www.xldstudios.com/using-a-proper-css-reset-vs-quick-blunt-wildcard-reset/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 06:00:12 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Reset]]></category>
		<category><![CDATA[Eric Meyer]]></category>
		<category><![CDATA[Eric Meyer CSS Reset]]></category>
		<category><![CDATA[Reset]]></category>
		<category><![CDATA[Stylesheet]]></category>
		<category><![CDATA[Wildcard Reset]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=871</guid>
		<description><![CDATA[<p>One of the many popular things that pretty much all self-respecting designers nowadays use is a CSS reset section of their initial website stylesheet. In this article I will go over why you want to use a reset section, what it does and the important differences in using a properly crafted reset compared to just ...</p><p><a href="http://www.xldstudios.com/using-a-proper-css-reset-vs-quick-blunt-wildcard-reset/">Using a Proper CSS Reset vs. Quick Blunt Wildcard Reset</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>One of the many popular things that pretty much all self-respecting designers nowadays use is a CSS reset section of their initial website stylesheet. In this article I will go over why you want to use a reset section, what it does and the important differences in using a properly crafted reset compared to just making a quick and blunt wildcard reset.<span id="more-871"></span></p>
<h2>What Is A CSS Reset And Why Do I Need One?</h2>
<p>By default all browsers apply some styling to the basic HTML elements. You will notice this if you just create a simple html page with some content on it, marked up by common HTML elements. It will not look very pretty, but all elements get styled in one way or another.</p>
<p>Since the very nature of CSS is to inherit properties from previously loaded stylesheets you will also inherit the basic styles applied by the browser, or the <em>user agent stylesheet</em> to be precise. Occasionally these styles contain default values that you want to keep intact but most often you find yourself overriding some common element all over your normal stylesheet.</p>
<p>A good example of this is margin and padding. Most elements have a pre-defined margin or padding around them and in order to place objects properly in your design, you will need to &#8220;reset&#8221; these to zero. Doing this all over again in your stylesheet not only takes up more space but creates a mess.</p>
<p>Instead we bring out what is called the CSS Reset, a section in your stylesheet where you &#8220;reset&#8221; the styles for the default HTML tags to be unstyled, leaving you completely free to work on them yourself.</p>
<p>In essence, a CSS reset is designed to reduce browser inconsistencies and help bridge the gap between the different user agent stylesheets as well as reducing the clutter in your stylesheets.</p>
<p><strong>Note:</strong> <em>For HTML5, a CSS Reset section typically includes a part that defines the new tags such as aside, section and article to be displayed as block to make sure older browsers interpret them properly if they do not exist in the user agent stylesheet</em></p>
<h2>Using A Wildcard Reset</h2>
<p>It is possible to reset each and every HTML tag that may or may not have a style attached to it with a wildcard CSS statement. While this is quick and easy it may also have undesirable effects.</p>
<p>By removing all default formatting from all HTML tags you force yourself to have to create custom styles for these tags. Remember, you may only think about div, span, ul, li and other common elements, completely forgetting about abbr, pre and cite.</p>
<p>Because of this, I would urge you to just skip thinking about the wildcard reset. It does far more harm than it does good because a lot of the time you just need to reset a handful of styles that you will be customizing and working closer with in your design.</p>
<p>Instead, let&#8217;s have a look at a proper CSS reset.</p>
<h2>Using A Proper CSS Reset Snippet</h2>
<p>Frameworks are really popular on the web today and most CSS framework you will find (such as <a href="http://blueprintcss.org/">Blueprint</a> which I like a lot) will include its own reset section. The most commonly used reset snippet is the one originally <a href="http://meyerweb.com/eric/tools/css/reset/">crafted by Eric Meyer</a>. Let&#8217;s have a look at his snippet:</p>
<pre escaped="true" lang="css">/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}</pre>
<p>As Eric himself advocates, you shouldn&#8217;t feel a need to just stick this in your next new project and not touch any of the parameters. The idea of the CSS reset is to tweak it to your needs, including colors and backgrounds.</p>
<p>Personally I usually use a 1.5 line height and therefore adjust the reset style accordingly. If there are elements that you would prefer to keep using the user-agent stylesheet, you can easily remove them from the reset, giving you ultimate flexibility over how you begin your project.</p>
<p>This brings us to the core of the reset philosophy (that sounded deep!), to create a common starting point where your tags behave the same across all browsers, regardless of what the user-agent stylesheet says. By starting off with a reset stylesheet you have the freedom of building a website out of your ideas and in my opinion much faster since you won&#8217;t be dealing with bugs due to these default inconsistencies.</p>
<h2>Conclusion</h2>
<p>Using a CSS reset is a powerful way of quickly achieving a good starting point for your design, allowing you to save time and clutter when coding. Instead of blatantly resetting everything you should find the tags you commonly want to reset and choose default values that work well according to each project individually.</p>
<p>Whether this means crafting your very own reset statement (which I can highly recommend) or using and tweaking one of the ones that have already been made, you have much to gain from using this in your projects.</p>
<p><a href="http://www.xldstudios.com/using-a-proper-css-reset-vs-quick-blunt-wildcard-reset/">Using a Proper CSS Reset vs. Quick Blunt Wildcard Reset</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/using-a-proper-css-reset-vs-quick-blunt-wildcard-reset/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Free Modern Fonts You Just Need To Have</title>
		<link>http://www.xldstudios.com/10-free-modern-fonts-you-just-need-to-have/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=10-free-modern-fonts-you-just-need-to-have</link>
		<comments>http://www.xldstudios.com/10-free-modern-fonts-you-just-need-to-have/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 06:00:09 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Awesome Fonts]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Fontin Sans]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Franchise Bold]]></category>
		<category><![CDATA[Free Fonts]]></category>
		<category><![CDATA[Homestead]]></category>
		<category><![CDATA[Jura]]></category>
		<category><![CDATA[Lane]]></category>
		<category><![CDATA[League Gothic]]></category>
		<category><![CDATA[Museo]]></category>
		<category><![CDATA[Must-have]]></category>
		<category><![CDATA[Necessary Fonts]]></category>
		<category><![CDATA[Neuton]]></category>
		<category><![CDATA[Powdah]]></category>
		<category><![CDATA[Quicksand]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=856</guid>
		<description><![CDATA[<p>Fonts can seem like an infinite resource to keep browsing through. While the vast free font sites such as Dafont contains tons of them already, it can be hard finding these really nice free fonts that can be used in your design projects. In this article, I have rounded up ten modern fonts that are ...</p><p><a href="http://www.xldstudios.com/10-free-modern-fonts-you-just-need-to-have/">10 Free Modern Fonts You Just Need To Have</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Fonts can seem like an infinite resource to keep browsing through. While the vast free font sites such as Dafont contains tons of them already, it can be hard finding these really nice free fonts that can be used in your design projects. In this article, I have rounded up ten modern fonts that are suitable for any design.</p>
<p>Just click on the preview image or the title of the font to go to a site where you can conveniently download a package of the font. All of them are free in at least one variation while some are free in some weights and payware in others.<span id="more-856"></span></p>
<h2><a href="http://www.exljbris.com/museo.html">Museo</a></h2>
<p><a href="http://www.exljbris.com/museo.html"><img class="aligncenter size-full wp-image-857" title="Museo" src="http://www.xldstudios.com/wp-content/uploads/2011/12/museo.jpg" alt="Museo" width="700" height="250" /></a></p>
<h2><a href="http://www.exljbris.com/fontinsans.html">Fontin Sans</a></h2>
<p><a href="http://www.exljbris.com/fontinsans.html"><img class="aligncenter size-full wp-image-858" title="Fontin Sans" src="http://www.xldstudios.com/wp-content/uploads/2011/12/fontin-sans.jpg" alt="Fontin Sans" width="700" height="250" /></a></p>
<h2><a href="http://www.losttype.com/font/?name=homestead">Homestead</a></h2>
<p><a href="http://www.losttype.com/font/?name=homestead"><img class="aligncenter size-full wp-image-859" title="Homestead" src="http://www.xldstudios.com/wp-content/uploads/2011/12/homestead.jpg" alt="Homestead" width="700" height="250" /></a></p>
<h2><a href="http://www.tenbytwenty.com/jura.php">Jura</a></h2>
<p><a href="http://www.tenbytwenty.com/jura.php"><img class="aligncenter size-full wp-image-860" title="Jura" src="http://www.xldstudios.com/wp-content/uploads/2011/12/jura.jpg" alt="Jura" width="700" height="250" /></a></p>
<h2><a href="http://www.fontspace.com/andrew-paglinawan/quicksand#">Quicksand</a></h2>
<p><a href="http://www.fontspace.com/andrew-paglinawan/quicksand#"><img class="aligncenter size-full wp-image-862" title="Quicksand" src="http://www.xldstudios.com/wp-content/uploads/2011/12/quicksand.jpg" alt="Quicksand" width="700" height="250" /></a></p>
<h2><a href="http://www.theleagueofmoveabletype.com/league-gothic">League Gothic</a></h2>
<p><a href="http://www.theleagueofmoveabletype.com/league-gothic"><img class="aligncenter size-full wp-image-863" title="League Gothic" src="http://www.xldstudios.com/wp-content/uploads/2011/12/league-gothic.jpg" alt="League Gothic" width="700" height="250" /></a></p>
<h2><a href="http://www.fontsquirrel.com/fonts/Lane">Lane</a></h2>
<p><a href="http://www.fontsquirrel.com/fonts/Lane"><img class="aligncenter size-full wp-image-864" title="Lane" src="http://www.xldstudios.com/wp-content/uploads/2011/12/lane.jpg" alt="Lane" width="700" height="250" /></a></p>
<h2><a href="http://derekweathersbee.com/franchise/">Franchise Bold</a></h2>
<p><a href="http://derekweathersbee.com/franchise/"><img class="aligncenter size-full wp-image-865" title="Franchise Bold" src="http://www.xldstudios.com/wp-content/uploads/2011/12/franchise-bold.jpg" alt="Franchise Bold" width="700" height="250" /></a></p>
<h2><a href="http://www.fontsquirrel.com/fonts/neuton">Neuton</a></h2>
<p><a href="http://www.fontsquirrel.com/fonts/neuton"><img class="aligncenter size-full wp-image-866" title="Neuton" src="http://www.xldstudios.com/wp-content/uploads/2011/12/neuton.jpg" alt="Neuton" width="700" height="250" /></a></p>
<h2><a href="http://www.fontspace.com/marc-clancy/powdah#">Powdah</a></h2>
<p><a href="http://www.fontspace.com/marc-clancy/powdah#"><img class="aligncenter size-full wp-image-867" title="Powdah" src="http://www.xldstudios.com/wp-content/uploads/2011/12/powdah.jpg" alt="Powdah" width="700" height="250" /></a></p>
<p><a href="http://www.xldstudios.com/10-free-modern-fonts-you-just-need-to-have/">10 Free Modern Fonts You Just Need To Have</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/10-free-modern-fonts-you-just-need-to-have/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Bundle—Save Some Money Off Good Themes!</title>
		<link>http://www.xldstudios.com/wordpress-theme-bundle%e2%80%94save-some-money-off-good-themes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-theme-bundle%25e2%2580%2594save-some-money-off-good-themes</link>
		<comments>http://www.xldstudios.com/wordpress-theme-bundle%e2%80%94save-some-money-off-good-themes/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 06:00:26 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Bundle]]></category>
		<category><![CDATA[Theme Bundle]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress Bundle]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=852</guid>
		<description><![CDATA[<p>It&#8217;s the time of the year when we see a lot of bundles. Even though this usually is for computer apps, here is a nice bundle from Mojo Themes that include 15 themes for just $29. Naturally I like the idea of a custom website any day built from scratch, but there are many companies ...</p><p><a href="http://www.xldstudios.com/wordpress-theme-bundle%e2%80%94save-some-money-off-good-themes/">WordPress Theme Bundle—Save Some Money Off Good Themes!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s the time of the year when we see a lot of bundles. Even though this usually is for computer apps, <a href="http://www.mojo-themes.com/bundles/cyber/">here is a nice bundle</a> from Mojo Themes that include 15 themes for just $29. Naturally I like the idea of a custom website any day built from scratch, but there are many companies starting out or personal projects where a template is a really good start.</p>
<p>So with that, I&#8217;d suggest that you take a look at the <a href="http://www.mojo-themes.com/bundles/cyber/">Mojo Themes Bundle</a> because it expires in just a few days!</p>
<p><a href="http://www.xldstudios.com/wordpress-theme-bundle%e2%80%94save-some-money-off-good-themes/">WordPress Theme Bundle—Save Some Money Off Good Themes!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/wordpress-theme-bundle%e2%80%94save-some-money-off-good-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating The Site With A Seasonal Feel</title>
		<link>http://www.xldstudios.com/updating-the-site-with-a-seasonal-feel/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updating-the-site-with-a-seasonal-feel</link>
		<comments>http://www.xldstudios.com/updating-the-site-with-a-seasonal-feel/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 08:35:10 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[Graphics Update]]></category>
		<category><![CDATA[Seasonal]]></category>
		<category><![CDATA[Website Update]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=843</guid>
		<description><![CDATA[<p>It&#8217;s been a long tradition here at XLD Studios to make some tweaks to the site for different seasonal holidays. This tradition is something that I always enjoy because these minor changes are really fun to sit down and make. I&#8217;ve just uploaded a seasonal twist to our header, including some snow around the logo ...</p><p><a href="http://www.xldstudios.com/updating-the-site-with-a-seasonal-feel/">Updating The Site With A Seasonal Feel</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long tradition here at XLD Studios to make some tweaks to the site for different seasonal holidays. This tradition is something that I always enjoy because these minor changes are really fun to sit down and make.</p>
<p>I&#8217;ve just uploaded a seasonal twist to our header, including some snow around the logo which goes perfect with December. Who knows, maybe you&#8217;ll see fireworks appearing closer to New Years. *hint*</p>
<p><strong>Tip:</strong> A seasonal tweak is always a good way to play around and change your design slightly a few times a year. Most visitors appreciate seeing the twist too!</p>
<p><a href="http://www.xldstudios.com/updating-the-site-with-a-seasonal-feel/">Updating The Site With A Seasonal Feel</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/updating-the-site-with-a-seasonal-feel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Announces Changes To Algorithm</title>
		<link>http://www.xldstudios.com/google-announces-changes-to-algorithm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-announces-changes-to-algorithm</link>
		<comments>http://www.xldstudios.com/google-announces-changes-to-algorithm/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 20:56:10 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Algorithm]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Search Algorithm]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=835</guid>
		<description><![CDATA[<p>Google today is starting a new monthly series on changes to their algorithm, much appreciated to help increase the transparency in how Google presents sites in search. The highlights today include some changes that do make some impact for websites and overall are nice changes which I urge you to read at the official Google ...</p><p><a href="http://www.xldstudios.com/google-announces-changes-to-algorithm/">Google Announces Changes To Algorithm</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Google today is starting a new monthly series on changes to their algorithm, much appreciated to help increase the transparency in how Google presents sites in search.</p>
<p>The highlights today include some changes that do make some impact for websites and overall are nice changes which I urge you to <a href="http://insidesearch.blogspot.com/2011/12/search-quality-highlights-new-monthly.html">read at the official Google blog</a>.</p>
<p><a href="http://www.xldstudios.com/google-announces-changes-to-algorithm/">Google Announces Changes To Algorithm</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/google-announces-changes-to-algorithm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Clients From Disabling Plugins in WordPress</title>
		<link>http://www.xldstudios.com/stop-clients-from-disabling-plugins-in-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=stop-clients-from-disabling-plugins-in-wordpress</link>
		<comments>http://www.xldstudios.com/stop-clients-from-disabling-plugins-in-wordpress/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 11:23:20 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[Disable plugins]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Theme Snippet]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=829</guid>
		<description><![CDATA[<p>You&#8217;ve build this great website for a client in WordPress that is dependent on a number of plugins for it to work and a few weeks after you launch the website, you get a call or email saying that the site you&#8217;ve build doesn&#8217;t work anymore. You go to the site only to find out ...</p><p><a href="http://www.xldstudios.com/stop-clients-from-disabling-plugins-in-wordpress/">Stop Clients From Disabling Plugins in WordPress</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve build this great website for a client in WordPress that is dependent on a number of plugins for it to work and a few weeks after you launch the website, you get a call or email saying that the site you&#8217;ve build doesn&#8217;t work anymore. You go to the site only to find out that your client has disabled some of these necessary plugins.</p>
<p>Does that sound like a reality for you? Even if it doesn&#8217;t yet you can take some precautions to prevent this from happening. While you could use another plugin and create a custom role for your client to use, many of our clients like their accounts to be the full administrator account and they also want to be able to install new plugins and disable them at their wish.</p>
<p>Luckily, there is another way to go about this. Below is a small snippet of code thanks to <a href="http://sltaylor.co.uk/blog/disabling-wordpress-plugin-deactivation-theme-changing/">Steve Taylor</a>, that removes the disable link from the plugins you insert. Let&#8217;s have a look at the code:<span id="more-829"></span></p>
<pre escaped="true" lang="php">add_filter( 'plugin_action_links', 'disable_plugin_deactivation', 10, 4 );
function disable_plugin_deactivation( $actions, $plugin_file, $plugin_data, $context ) {
	// Removes edit link for all plugins
	if ( array_key_exists( 'edit', $actions ) )
		unset( $actions['edit'] );
	// Removes the deactivate link for the plugins you specify
	if ( array_key_exists( 'deactivate', $actions ) &amp;&amp; in_array( $plugin_file, array(
		'facebook-open-graph-meta-in-wordpress/fbogmeta.php',
		'wp-pagenavi/wp-pagenavi.php'
	)))
		unset( $actions['deactivate'] );
	return $actions;
}</pre>
<p>The snippet, which should be placed in your <strong>functions.php </strong>file will go through and remove the deactivate link if the files specified in the latter array exists in the plugin list.</p>
<p>The paths to the main plugin files are relative from the <code>/wp-content/plugins/</code> directory and you can just add to the array as needed.</p>
<p><strong>Note:</strong> Naturally, this does not prevent the client from finding out the deactivation link by him-/herself and running it anyway, or just signing in to the FTP and removing the plugin from there. However this has never been an issue for me personally.</p>
<p><a href="http://www.xldstudios.com/stop-clients-from-disabling-plugins-in-wordpress/">Stop Clients From Disabling Plugins in WordPress</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/stop-clients-from-disabling-plugins-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launching A New Website for The Grill in San Fransisco</title>
		<link>http://www.xldstudios.com/launching-a-new-website-for-the-grill-in-san-fransisco/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=launching-a-new-website-for-the-grill-in-san-fransisco</link>
		<comments>http://www.xldstudios.com/launching-a-new-website-for-the-grill-in-san-fransisco/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 08:12:30 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Restaurant]]></category>
		<category><![CDATA[The Grill]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=814</guid>
		<description><![CDATA[<p>I&#8217;m very happy to share that we are launching a new website this week for The Grill, a restaurant in San Fransisco that specializes in burgers and sandwiches. We built the website using the latest standards both by using HTML5 but also by using some of the new features in WordPress 3 to create a ...</p><p><a href="http://www.xldstudios.com/launching-a-new-website-for-the-grill-in-san-fransisco/">Launching A New Website for The Grill in San Fransisco</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very happy to share that we are launching a new website this week for <a href="http://www.thegrillsf.com/">The Grill</a>, a restaurant in San Fransisco that specializes in burgers and sandwiches.</p>
<p>We built the website using the latest standards both by using HTML5 but also by using some of the new features in WordPress 3 to create a powerful yet easy to use backend. Let me a take a few moments to go through the new website with you.</p>
<p><span id="more-814"></span></p>
<p style="text-align: center;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/11/the-grill.jpg"><img class="border aligncenter size-medium wp-image-815" title="The Grill" src="http://www.xldstudios.com/wp-content/uploads/2011/11/the-grill-700x510.jpg" alt="The Grill" width="630" height="459" /></a></p>
<h2>Built Using the Latest Standards</h2>
<p>The Grill&#8217;s new website is built using HTML5, using the Modernizr framework to allow older browsers to see and recognize the website properly, supporting all browsers apart from Internet Explorer 6.</p>
<p>For flexibility, two grid systems are used throughout the website. Firstly, the main structure is built up by the <a href="http://www.960.gs">960 grid system</a> which makes it easy to quickly develop a website. In order to make it easy for the client to continue updating the website, we use a second, fractional (percentage based) grid system to create and build columns for the content pages.</p>
<p><img class="aligncenter size-full wp-image-764" title="WordPress" src="http://www.xldstudios.com/wp-content/uploads/2011/11/wordpress-logo-hoz-rgb-1.png" alt="WordPress" width="498" height="113" /></p>
<h2>Running on WordPress</h2>
<p>For this website, we decided that WordPress would be a good fit for the client since it is a smaller Content Management System (CMS) that is easy to learn and also isn&#8217;t too heavy for a simpler website.</p>
<p>Thanks to the new custom post types in WordPress 3, we have set up a custom section for posting and managing ongoing specials.</p>
<p>Making the site easy to update and maintain was crucial and the WordPress Shortcodes API helps us build some useful shortcodes for the client to be able to add elements such as columns to posts and pages without having to write any code.</p>
<p>The Grill&#8217;s website is the first website we launch based on our own Ilmenite framework. This framework is solely used inside of XLD Studios for all of our WordPress themes, giving us a good starting base for themes, allowing us to start from a pre-packed bundle that contains what we normally use in a WordPress theme.</p>
<p><a href="http://www.xldstudios.com/launching-a-new-website-for-the-grill-in-san-fransisco/">Launching A New Website for The Grill in San Fransisco</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/launching-a-new-website-for-the-grill-in-san-fransisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding the Open Graph Protocol to Your WordPress Theme</title>
		<link>http://www.xldstudios.com/adding-the-open-graph-protocol-to-your-wordpress-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adding-the-open-graph-protocol-to-your-wordpress-theme</link>
		<comments>http://www.xldstudios.com/adding-the-open-graph-protocol-to-your-wordpress-theme/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 06:00:16 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Open Graph]]></category>
		<category><![CDATA[Open Graph Protocol]]></category>
		<category><![CDATA[Open Graph Tags]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Theme Hacks]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=791</guid>
		<description><![CDATA[<p>Earlier this week I showed you how to add the Open Graph Protocol tags from Facebook to your website and took you through how the different tags work. At the end of the article, I promised a follow-up article on how to add these tags to WordPress, as it involves using the proper template tags. ...</p><p><a href="http://www.xldstudios.com/adding-the-open-graph-protocol-to-your-wordpress-theme/">Adding the Open Graph Protocol to Your WordPress Theme</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Earlier this week I showed you how to add the Open Graph Protocol tags from Facebook to your website and took you through how the different tags work. At the end of the article, I promised a follow-up article on how to add these tags to WordPress, as it involves using the proper template tags. So in this article, I will show you just that: How do add the Open Graph protocol tags to your WordPress theme.</p>
<p>If you are unfamiliar with the Open Graph Protocol, I encourage you to go back and read my earlier post about it.</p>
<p><strong>Did you came here just to grab the code? <a href="#iwantthecode">Skip the article and go right to the bottom</a>!</strong><span id="more-791"></span></p>
<h2>There Are Three Ways&#8230;</h2>
<p>You can go about adding the Open Graph Protocol tags to your WordPress theme in three different ways:</p>
<ol>
<li>Right into your header.php.</li>
<li>Into your functions.php and calling the header hooks.</li>
<li>Using a plugin to do the work.</li>
</ol>
<p>For this tutorial, we are going to use the second way, creating a function that adds these tags by calling the wp_head hook. Why you ask? By adding the code in functions.php, it is easier to change your header file out and keep this snippet when creating new themes. It is ultimately more flexible and cleans up your header.php file.</p>
<p>As an added bonus, it helps you if you have more than one header.php file by just hooking into the wp_head(); function. Instead of adding it to many files, you only need to change this once.</p>
<h2>So Let&#8217;s Create The Functions!</h2>
<p>To add the Open Graph Protocol tags, we need two functions. One for the language attributes, hooking into the &lt;html&gt; tag, and one for the actual meta tags themselves, hooking into the wp_head section which has to be called in the header.php file.</p>
<h3>Adding The Language Attributes</h3>
<p>When it comes to the language attributes, the code is very simple and straightforward. All we are doing is creating a function (so that we can pass it on to the language_attributes hook) and having it output the correct piece of code.</p>
<pre escaped="true" lang="php">/**
 * Adds Open Graph Language Attributes
 **/

function add_opengraph_lang($output) {
	$output = 'xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml"';
}

add_filter('language_attributes', 'add_opengraph_lang');</pre>
<p>Dropping this code anywhere in your functions.php will make sure the two xmlns attribute definitions show up in the file source of all pages.</p>
<h3>Adding the Open Graph Protocol Meta Properties</h3>
<p>The code for the meta properties is slightly longer but isn&#8217;t that much more complicated. The only reason why it is longer (apart from containing more fields) is because we need to use some logic (if-statements) to customize the output depending on three factors:</p>
<ul>
<li>The page is a single post or page</li>
<li>The page is the front page</li>
<li>The post/page has/hasn&#8217;t a custom thumbnail</li>
</ul>
<p><strong>Making It Look Good</strong></p>
<p>First in the function, I make sure to add a line break and a comment just to clean up the code and make it nicer to view in the source.</p>
<p><strong>Setting The Tags That Don&#8217;t Change</strong></p>
<p>Next up, there are a few meta tags that do not depend on the three factors. The first of these tags is the compulsory Facebook user ID which you will need to replace with your own ID. You can find our your ID by <a href="http://graph.facebook.com/erikbernskiold">going to this link</a>, replacing <em>erikbernskiold</em> with your own Facebook username.</p>
<p><strong>Single Pages/Posts Require Specific Tags</strong></p>
<p>Now begins the logic. For single posts or pages we want Facebook to display the post or page title as well as setting its &#8220;type&#8221; parameter to be &#8220;article&#8221; in accordance with their guidelines.</p>
<p><strong>Front Pages and Main Blog Page Needs Custom Treatment</strong></p>
<p>For the front page however, we want to make sure it just doesn&#8217;t simply say &#8220;Home&#8221; when viewed on Facebook. This would be the case if a custom front page is used on the site. In addition to this, we are checking to see if the page is the home page, a denomination used by WordPress to indicate the blog listing page. Should we just get &#8220;the_title&#8221; on the blog page, we would end up with the title of the first post.</p>
<p>Finally here we define the content type to be &#8220;website&#8221;, a generic term that is used for the home page without a clear focus.</p>
<p><strong>Checking For Post Thumbnails</strong></p>
<p>If your blog post has a custom post thumbnail added to it, this next snippet automatically grabs that to use as the preview image. If you do not however, as will be the case with many pages, including the home page, a default image must be specified to be used instead.</p>
<p><strong>Making It Look Nice Again</strong></p>
<p>Finally we finish up with a closing comment and a clean line break.</p>
<p><strong>The Code For This Function</strong></p>
<p>Now that I&#8217;m done explaining what the code does, here it is:</p>
<pre escaped="true" lang="php" line="1">function add_opengraph() {
	global $post; // Ensures we can use post variables outside the loop

	echo "\n &lt;!-- Start Facebook Open Graph Protocol --&gt; \n";

	// Start with some values that don't change.
	echo "&lt;meta property=\"fb:admins\" content=\"YOUR FACEBOOK USER ID\"/&gt;\n"; // Insert your Facebook user ID in here
	echo "&lt;meta property=\"og:site_name\" content=\"". get_bloginfo('name') ."\"/&gt;\n"; // Sets the site name to the one in your WordPress settings
	echo "&lt;meta property=\"og:url\" content=\"" . get_permalink() . "\"/&gt;\n"; // Gets the permalink to the post/page

	if (is_singular()) { // If we are on a blog post/page
        echo "&lt;meta property=\"og:title\" content=\"" . get_the_title() . "\"/&gt;\n"; // Gets the page title
        echo "&lt;meta property=\"og:type\" content=\"article\"/&gt;\n"; // Sets the content type to be article.
    } elseif(is_front_page() or is_home()) { // If it is the front page or home page
    	echo "&lt;meta property=\"og:title\" content=\"" . get_bloginfo('name') . "\"/&gt;\n"; // Get the site title
    	echo "&lt;meta property=\"og:type\" content=\"website\"/&gt;\n"; // Sets the content type to be website.
    }

	if(has_post_thumbnail( $post-&gt;ID )) { // If the post has a featured image.
		$thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'medium' );
		echo "&lt;meta property=\"og:image\" content=\"" . esc_attr( $thumbnail[0] ) . "\"/&gt;\n"; // If it has a featured image, then display this for Facebook
	} else {
		$main_image = "http://example.com/image.jpg"; // Replace this with a link to a default preview image.
		echo "&lt;meta property=\"og:image\" content=\"" . $main_image . "\"/&gt;\n";
	}

	echo "&lt;!-- / End Facebook Open Graph Protocol --&gt; \n \n";
}

add_action( 'wp_head', 'add_opengraph', 5 );</pre>
<p><a name="iwantthecode"></a></p>
<h2>I Just Want the Code!</h2>
<p>If you came to this article and just want the code to copy and paste, this section is for you. Just paste the following code into your functions.php file, setting your Facebook User ID and default image where told to.</p>
<pre escaped="true" lang="php" line="1">/**
 * Adds Open Graph Language Attributes
 **/

function add_opengraph_lang($output) {
	$output = 'xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml"';
}

add_filter('language_attributes', 'add_opengraph_lang');

/**
 * Adds Open Graph Tags to Header
 **/

function add_opengraph() {
	global $post; // Ensures we can use post variables outside the loop

	echo "\n &lt;!-- Start Facebook Open Graph Protocol --&gt; \n";

	// Start with some values that don't change.
	echo "&lt;meta property=\"fb:admins\" content=\"YOUR FACEBOOK USER ID\"/&gt;\n"; // Insert your Facebook user ID in here
	echo "&lt;meta property=\"og:site_name\" content=\"". get_bloginfo('name') ."\"/&gt;\n"; // Sets the site name to the one in your WordPress settings
	echo "&lt;meta property=\"og:url\" content=\"" . get_permalink() . "\"/&gt;\n"; // Gets the permalink to the post/page

	if (is_singular()) { // If we are on a blog post/page
        echo "&lt;meta property=\"og:title\" content=\"" . get_the_title() . "\"/&gt;\n"; // Gets the page title
        echo "&lt;meta property=\"og:type\" content=\"article\"/&gt;\n"; // Sets the content type to be article.
    } elseif(is_front_page() or is_home()) { // If it is the front page or home page
    	echo "&lt;meta property=\"og:title\" content=\"" . get_bloginfo('name') . "\"/&gt;\n"; // Get the site title
    	echo "&lt;meta property=\"og:type\" content=\"website\"/&gt;\n"; // Sets the content type to be website.
    }

	if(has_post_thumbnail( $post-&gt;ID )) { // If the post has a featured image.
		$thumbnail = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'medium' );
		echo "&lt;meta property=\"og:image\" content=\"" . esc_attr( $thumbnail[0] ) . "\"/&gt;\n"; // If it has a featured image, then display this for Facebook
	} else {
		$main_image = "http://example.com/image.jpg"; // Replace this with a link to a default preview image.
		echo "&lt;meta property=\"og:image\" content=\"" . $main_image . "\"/&gt;\n";
	}

	echo "&lt;!-- / End Facebook Open Graph Protocol --&gt; \n \n";
}

add_action( 'wp_head', 'add_opengraph', 5 );</pre>
<p><a href="http://www.xldstudios.com/adding-the-open-graph-protocol-to-your-wordpress-theme/">Adding the Open Graph Protocol to Your WordPress Theme</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/adding-the-open-graph-protocol-to-your-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Mobile Has Gone Final. Version 1.0 Is Released!</title>
		<link>http://www.xldstudios.com/jquery-mobile-has-gone-final-version-1-0-is-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-mobile-has-gone-final-version-1-0-is-released</link>
		<comments>http://www.xldstudios.com/jquery-mobile-has-gone-final-version-1-0-is-released/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 18:43:57 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Final]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jQuery Mobile]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=806</guid>
		<description><![CDATA[<p>jQuery Mobile, the framework that makes it easy to quickly design a visually appealing mobile web application has now gone final with version 1.0 released today. It&#8217;s been in development for over a year but is already included in the latest version of Adobe Dreamweaver CS5.5 and has been used for a lot of people ...</p><p><a href="http://www.xldstudios.com/jquery-mobile-has-gone-final-version-1-0-is-released/">jQuery Mobile Has Gone Final. Version 1.0 Is Released!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://jquerymobile.com/blog/2011/11/16/announcing-jquery-mobile-1-0/">jQuery Mobile</a>, the framework that makes it easy to quickly design a visually appealing mobile web application has now gone final with version 1.0 released today. It&#8217;s been in development for over a year but is already included in the latest version of Adobe Dreamweaver CS5.5 and has been used for a lot of people during its release candidate time.</p>
<p>If you haven&#8217;t played around with it, jQuery Mobile can do some pretty amazing things all for free and with minimal development time. For businesses that need a quick web application or an internal application, we would recommend jQuery Mobile because of its simplicity and reduced cost.</p>
<p><a href="http://www.xldstudios.com/jquery-mobile-has-gone-final-version-1-0-is-released/">jQuery Mobile Has Gone Final. Version 1.0 Is Released!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/jquery-mobile-has-gone-final-version-1-0-is-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Facebook Preview Image, Title and Description with the Open Graph Protocol</title>
		<link>http://www.xldstudios.com/add-facebook-preview-image-title-and-description-with-the-open-graph-protocol/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=add-facebook-preview-image-title-and-description-with-the-open-graph-protocol</link>
		<comments>http://www.xldstudios.com/add-facebook-preview-image-title-and-description-with-the-open-graph-protocol/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 06:00:03 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[HTML meta]]></category>
		<category><![CDATA[Meta tags]]></category>
		<category><![CDATA[Open Graph]]></category>
		<category><![CDATA[Open Graph Protocol]]></category>
		<category><![CDATA[Open Graph Tags]]></category>
		<category><![CDATA[Sharing]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=786</guid>
		<description><![CDATA[<p>Have you ever shared a link on Facebook only to discover that the preview image you want isn&#8217;t available to choose from? If you&#8217;re a WordPress user, have you not wanted that featured image to be the preview image on Facebook. Or, do you just want to limit other people from sharing your links with ...</p><p><a href="http://www.xldstudios.com/add-facebook-preview-image-title-and-description-with-the-open-graph-protocol/">Add Facebook Preview Image, Title and Description with the Open Graph Protocol</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Have you ever shared a link on Facebook only to discover that the preview image you want isn&#8217;t available to choose from? If you&#8217;re a WordPress user, have you not wanted that featured image to be the preview image on Facebook. Or, do you just want to limit other people from sharing your links with the &#8220;wrong&#8221; image?</p>
<p>What you might not be aware of is that Facebook easily allows you to do this using their Open Graph tags that you can embed on your page. In this article I will explain how to include them and what each tag does.<span id="more-786"></span></p>
<div class="framed_box">
<div class="framed_box_content" style="background-color:#fcffc4;"> Want to add this to your WordPress site? <a href="http://www.xldstudios.com/adding-the-open-graph-protocol-to-your-wordpress-theme/">Jump right to our tutorial</a>! 
<div class="clearboth"></div>
</div>
</div>
<h2>What are Open Graph Tags?</h2>
<p>Open Graph Tags are nothing special in terms of HTML. They are just a series of custom meta tags that Facebook itself reads when scanning a page. Here is what Facebook says in their developer documentation:</p>
<blockquote><p>The tags allow you to specify structured information about your web pages. The more information you provide, the more opportunities your web pages can be surfaced within Facebook today and in the future.</p></blockquote>
<p>The main benefit of these tags is that you get to customize how Facebook reads the links that people like or share from your site. You get to control the title, description and featured image instead of leaving that up to the person sharing your content. This gives you consistent control over branding.</p>
<h2>The Tags Your Must Include</h2>
<p>Facebook has chosen to require you to use a minimum amount of tags if you are going to use them at all. Fortunately, they are all tags that you would want to use. In no particular order, the tags are: <em>og:title</em>,<em> og: type</em>,<em> og:image</em> and <em>og:url</em>. Facebook also asks (forcefully) that you include <em>fb:app_id </em>or <em>fb:admins</em>.</p>
<p>In addition, Facebook recommends that you also add <em>og:site_name</em> and <em>og:description</em> to the header.</p>
<p>Furthermore, to make sure the tags are easier understood, include the following in your &lt;html&gt; opening tag, following the type specification: <code>xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml"</code></p>
<p>This would make the head look like this:</p>
<pre escaped="true" lang="html">&lt;html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="https://www.facebook.com/2008/fbml"&gt;
   &lt;head&gt;</pre>
<h2>What Do The Tags Do?</h2>
<p>Now that we have gotten down the basics of what open meta tags are and what Facebook requires of you, let&#8217;s have a look at what each of these tags do specifically and what the markup is to add them. All of the tags are prefixed by og: (for open graph) and the word following is usually pretty self-explanatory.</p>
<h3>og:title</h3>
<p>Consider this as an equivalent of your HTML &lt;h1&gt; tag or whatever tag you are using for your page headline. This is used to grab the title of the link when sharing a link to Facebook. The benefit of specifying this in an open graph tag is that you can exclude your site name if you&#8217;d like, something which likely is in your page &lt;title&gt; tag.</p>
<pre escaped="true" lang="html">&lt;meta property="og:title" content="5 Time Saving Notebooks and Sketchbooks for Web Designers"/&gt;</pre>
<h3>og:type</h3>
<p>One of the less self-explanatory tags is the og:type tag. Basically, since Open Graph is a protocol used to interact with your Facebook profile and experience, types are a number of pre-defined, real-life objects that say something about the contents of the page. If you are posting a review of a book you would want to use &#8220;book&#8221; as the type as an example. Facebook offers a comprehensive list of support type objects <a href="https://developers.facebook.com/docs/opengraph/#types">on their developer page</a>.</p>
<pre escaped="true" lang="html">&lt;meta property="og:type" content="article" /&gt;</pre>
<h3>og:image</h3>
<p>The preview image that shows up when you share a link on Facebook can be fully customized. Not a lot of people are aware of this and even fewer take advantage of it. By default, if this tag isn&#8217;t specified, Facebook will load all of the images on the site and give the person sharing the link a choice. This means that ads can definitely be used to share your article, something far from ideal.</p>
<p>Instead make sure that you include this tag on your page and control how it appears. Square images work best, although any will suffice.</p>
<pre escaped="true" lang="html">&lt;meta property="og:image" content="http://www.xldstudios.com/wp-content/uploads/2011/11/p2-large-200x200.jpg"/&gt;</pre>
<h3>og:url</h3>
<p>There&#8217;s not much to say about this tag, other than the fact that it does what you think it would do. When specifying this in your header, it should indeed contain a link back to the article that you are sharing. It&#8217;s just another way of making sure Facebook gets the right metadata for your link.</p>
<pre escaped="true" lang="html">&lt;meta property="og:url" content="http://www.xldstudios.com/2011/11/02/5-time-saving-notebooks-and-sketchbooks-for-web-designers/"/&gt;</pre>
<h3>fb:app_id/fb:admins</h3>
<p>Facebook really likes to know which of their users or pages are connecting with Facebook to use the open meta tags. If you want to use all the power of a Facebook application as a base for your website sharing, you should go ahead and use the fb:app_id tag and enter the ID of the app that you create.</p>
<p>If you on the other hand just like to connect your website with Facebook&#8217;s sharing functions via your personal account, using the fb:admins tag and your own User ID (not your username or nice name, but the numerical ID) will be just enough.</p>
<pre escaped="true" lang="html">&lt;meta property="fb:admins" content="2618000377458"/&gt;</pre>
<h3>og:site_name</h3>
<p>Another tag that is rather self-explanatory is og:site_name. Just fill it with the normal name of your website as Facebook uses this as a base to write from where a user shared the content.</p>
<pre escaped="true" lang="html">&lt;meta property="og:site_name" content="XLD Studios"/&gt;</pre>
<h3>og:description</h3>
<p>Finally, just like any search engine needs a good description, so does your page that is destined to be shared on Facebook. By specifying a custom description, you can control what appears when a user shares the content on Facebook and can try to tailor it so that more users click on the link and read your article, or keep sharing it.</p>
<pre escaped="true" lang="html">&lt;meta property="og:description" content="Explore 5 different notebooks and sketchbooks perfect for the designer wishing to do sketches away from the computer."/&gt;</pre>
<h2>WordPress Users: How Do You Do This?</h2>
<p>If you are using WordPress you need to think in a slightly more dynamic way if you choose to add the tags by hand to your header.php, or through your functions.php, hooking into the WordPress wp_head(); function.</p>
<p>Later this week, I will be showing you how to set your theme up for the Open Graph tags in a good way, using proper WordPress coding principles and supporting all of the parameters discussed here today, including setting an image tag that will for blog entries be the same as your featured image and for your home page be a custom logo that you can set. Stay tuned for the article.</p>
<p>If you would rather use a plugin, basic support (the tags discussed in this article with the exception of the image tag) is included in the <a href="http://yoast.com/wordpress/seo/">WordPress SEO plugin by Yoast</a>. This is currently the plugin that we use on new websites that we build here at XLD Studios and favor it over competing solutions such as All in One SEO and SEO Ultimate.</p>
<h2>Conclusion</h2>
<p>Adding Open Graph Tags to your page header will help ensure that your content is shared in a more favorable way on Facebook. If you dig deeper into Facebook&#8217;s Open Graph protocol though, you will find all sorts of more advanced use for it, where sharing is just the tip of the ice berg.</p>
<p>Given how easy it is to gain control over how links from your site appears on Facebook, it is something you ought to consider just doing.</p>
<p>Don&#8217;t forget to use the Facebook <a href="https://developers.facebook.com/docs/opengraph/">developer site article on the Open Graph Protocol</a> as a reference.</p>
<p><a href="http://www.xldstudios.com/add-facebook-preview-image-title-and-description-with-the-open-graph-protocol/">Add Facebook Preview Image, Title and Description with the Open Graph Protocol</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/add-facebook-preview-image-title-and-description-with-the-open-graph-protocol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time To Try WordPress 3.3 Beta 3</title>
		<link>http://www.xldstudios.com/time-to-try-wordpress-3-3-beta-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=time-to-try-wordpress-3-3-beta-3</link>
		<comments>http://www.xldstudios.com/time-to-try-wordpress-3-3-beta-3/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 20:50:46 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[3.3 beta 3]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Beta Testing]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[WordPress 3.3]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=781</guid>
		<description><![CDATA[<p>Time to get cracking on testing plugins and themes for WordPress 3.3 beta 3. This upgrade is bound to case more problems than usual upgrades since the team is upgrading to jQuery 1.7 in core which can potentially break plugins. Bear this in mind and start testing your own site on a test development server ...</p><p><a href="http://www.xldstudios.com/time-to-try-wordpress-3-3-beta-3/">Time To Try WordPress 3.3 Beta 3</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Time to get cracking on testing plugins and themes for WordPress 3.3 beta 3. This upgrade is bound to case more problems than usual upgrades since the team is upgrading to jQuery 1.7 in core which can potentially break plugins. Bear this in mind and start testing your own site on a test development server to be ready to make the upgrade once WordPress 3.3 comes in final.</p>
<p>Here&#8217;s the plea from the WordPress team themselves:</p>
<blockquote><p>As always, plugin and theme authors, PLEASE test your code against the beta so you can catch any incompatibilities now rather than after your users update their WordPress installation and find bugs for you. <strong>This time we really mean it, especially if your plugin uses jQuery.</strong> We’ve now updated to jQuery 1.7 in core, so please please pretty please check your plugins and themes against beta 3.</p></blockquote>
<p><a href="http://www.xldstudios.com/time-to-try-wordpress-3-3-beta-3/">Time To Try WordPress 3.3 Beta 3</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/time-to-try-wordpress-3-3-beta-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Safari Topsites Preview like iCloud, Is it possible?</title>
		<link>http://www.xldstudios.com/custom-safari-topsites/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=custom-safari-topsites</link>
		<comments>http://www.xldstudios.com/custom-safari-topsites/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 11:11:31 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Browser Trick]]></category>
		<category><![CDATA[Custom Preview]]></category>
		<category><![CDATA[iCloud]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Logo]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Topsites]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=770</guid>
		<description><![CDATA[<p>Today I want to highlight a little javascript that was lifted from the iCloud source code by nikf.org, in order to try and duplicate the custom logo that iCloud gets in the Safari topsites feature. Personally, I haven&#8217;t gotten this snippet to work on any website, which leads me to believe there is something else ...</p><p><a href="http://www.xldstudios.com/custom-safari-topsites/">Custom Safari Topsites Preview like iCloud, Is it possible?</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Today I want to highlight a little javascript that was lifted from the iCloud source code by <a href="http://nikf.org/post/11697312927/on-iclouds-custom-topsites-previews-in-safari">nikf.org</a>, in order to try and duplicate the custom logo that iCloud gets in the Safari topsites feature. Personally, I haven&#8217;t gotten this snippet to work on any website, which leads me to believe there is something else going on in here.</p>
<p>However, you should try! Here is the code which detects the purpose of the loading of the page and sends you (if it is previewing your page) to a custom HTML page that has the custom preview logo.</p>
<pre escaped="true" lang="javascript">&lt;script&gt;if(window.navigator&amp;&amp;window.navigator.loadPurpose==="preview"){window.location.href="https://www.icloud.com/topsites_preview/"
};&lt;/script&gt;</pre>
<p><a href="http://www.xldstudios.com/custom-safari-topsites/">Custom Safari Topsites Preview like iCloud, Is it possible?</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/custom-safari-topsites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dress Right For Client Meetings And Close The Deal</title>
		<link>http://www.xldstudios.com/dress-right-for-client-meetings-and-close-the-deal/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dress-right-for-client-meetings-and-close-the-deal</link>
		<comments>http://www.xldstudios.com/dress-right-for-client-meetings-and-close-the-deal/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 06:00:29 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Advice]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[CEO]]></category>
		<category><![CDATA[Client Meetings]]></category>
		<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Dress]]></category>
		<category><![CDATA[Dress Advice]]></category>
		<category><![CDATA[Manager Tools]]></category>
		<category><![CDATA[Men]]></category>
		<category><![CDATA[Seriousness]]></category>
		<category><![CDATA[Suit]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=688</guid>
		<description><![CDATA[<p>I&#8217;m not trying to imply that you are dressing badly to start with, however I am suggesting that you probably are underdressing for client meetings. Because we are in a creative field, many people think that this must be clearly noticeable in the way they dress. This is in fact completely wrong. If you dress ...</p><p><a href="http://www.xldstudios.com/dress-right-for-client-meetings-and-close-the-deal/">Dress Right For Client Meetings And Close The Deal</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not trying to imply that you are dressing badly to start with, however I am suggesting that you probably are underdressing for client meetings. Because we are in a creative field, many people think that this must be clearly noticeable in the way they dress. This is in fact completely wrong. If you dress up for client meetings, you are much more likely to land the project and close the deal. In this article, I am going to tell you exactly why this is and how you can dress to impress.</p>
<h2><span id="more-688"></span></h2>
<p><em><strong>Disclaimer:</strong> The advice on clothing in this article is targeted at men. I would love to hear from women on the equivalent clothing for you to include in this article with attribution to you.</em></p>
<h2>Clothing Shows Seriousness</h2>
<p>The way you dress clearly shows how serious you are about their business. If you are the business owner or CEO of your own or a small company, you are still the top person. In other companies outside the creative sphere it is the norm to see executives dress in a suit (with or without tie) or at least a suit jacket. Given that this is business standard today, you should do the same. This shows your prospective client that you are serious about their business and that you value their company and business.</p>
<p>Additionally, we perceive humans by the way they dress and people dressed in suits or similar often come across better than people in the casual T-Shirt when it comes to business. Take advantage of this notion when dressing and get a head start directly.</p>
<p><img class="size-full wp-image-691 aligncenter" title="clothing_1" src="http://www.xldstudios.com/wp-content/uploads/2011/10/clothing_1.jpg" alt="" width="640" height="480" /></p>
<h2>Show Creativity Subtly</h2>
<p>Wearing a suit doesn&#8217;t have to be boring. There are plenty of ways to show creativeness while wearing a suit jacket, without resorting to weird color combinations, or buying a suit with bright orange button holes. Spice it up with other accessories while still keeping the professional feel.</p>
<p>Creativity is as much about a perfect and well balanced combination as sticking out. It is a common misconception that you must stand out with colors when you dress. Instead you could just as easily stand out by choosing each part of your outfit carefully, making sure it matches perfectly. Trust me, it will show.</p>
<h2>How Should I Dress?</h2>
<p>First of all, strongly consider wearing a suit if the company you are meeting with would wear it. You could very well leave the tie out of the suit, although wearing one is good if the company you have a meeting with usually wears ties.</p>
<p>If you want to dress down a bit from the suit, you have the option to taking a dress shirt and suit trousers, once again with or without a tie. Leaving the suit jacket out makes it more casual while still keeping a professional approach.</p>
<p>Another option is wearing dark blue jeans together with a matching darker suit jacket. Remember that blue is a good business color both for shirts and suits. When it comes to suits though, keep it dark for formal business.</p>
<p>For more direct dress advice, consider listening to this two-part podcast (<a href="http://manager-tools.com/2009/10/presentation-attire-part-1">Part 1</a>, <a href="http://manager-tools.com/2009/10/presentation-attire-part-2">Part 2</a>) by the folks at Manager Tools who definitely know what they are talking about.</p>
<p><img class="size-full wp-image-690 aligncenter" title="clothing_2" src="http://www.xldstudios.com/wp-content/uploads/2011/10/clothing_2.jpg" alt="" width="640" height="150" /></p>
<h2>Conclusion</h2>
<p>By dressing appropriately for your client, you not only show them that you are serious about their business but it gives you a head start. Not dressing up could make it much harder for you to land the bigger clients, who might expect a CEO of a firm to dress the way CEOs normally dress.</p>
<p>Invest in your clothing and you will begin to see the results directly, even in your bottom line.</p>
<p><a href="http://www.xldstudios.com/dress-right-for-client-meetings-and-close-the-deal/">Dress Right For Client Meetings And Close The Deal</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/dress-right-for-client-meetings-and-close-the-deal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Time Saving Notebooks and Sketchbooks for Web Designers</title>
		<link>http://www.xldstudios.com/web-designer-sketchbooks/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=web-designer-sketchbooks</link>
		<comments>http://www.xldstudios.com/web-designer-sketchbooks/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 06:00:37 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[960.gs]]></category>
		<category><![CDATA[960.gs Sketch Sheets]]></category>
		<category><![CDATA[Browser Sketch Pad]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Do It Yourself]]></category>
		<category><![CDATA[Moleskine]]></category>
		<category><![CDATA[Notebook]]></category>
		<category><![CDATA[Paper Browser]]></category>
		<category><![CDATA[Print]]></category>
		<category><![CDATA[Sketchbook]]></category>
		<category><![CDATA[Sketches]]></category>
		<category><![CDATA[UI Stencils]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Sketchbook]]></category>
		<category><![CDATA[Web Designer]]></category>
		<category><![CDATA[Website Stencil Kit]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=711</guid>
		<description><![CDATA[<p>Today we are briefly examining 10 notebooks and sketchbooks that are perfectly suited for you as a web designer. While you might do a lot of work on the computer, it can be nice to sit back with a notebook or sketchpad and get the rough design going with a pen and paper. Our collection ...</p><p><a href="http://www.xldstudios.com/web-designer-sketchbooks/">5 Time Saving Notebooks and Sketchbooks for Web Designers</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Today we are briefly examining 10 notebooks and sketchbooks that are perfectly suited for you as a web designer. While you might do a lot of work on the computer, it can be nice to sit back with a notebook or sketchpad and get the rough design going with a pen and paper.</p>
<p>Our collection here includes both different and similar types of notebooks and sketchbooks so make sure you look at them all to find the one(s) you like the most!</p>
<p><span id="more-711"></span><em>Do you like this post? How about <a href="http://www.xldstudios.com/feed/">subscribing to our RSS Feed</a> or <a href="https://twitter.com/xldstudios">following us on Twitter</a>?</em></p>
<h2><a href="http://www.moleskine.com/">Moleskine</a></h2>
<p><img class="alignnone size-medium wp-image-712 border" title="Moleskine" src="http://www.xldstudios.com/wp-content/uploads/2011/11/moleskine-700x400.png" alt="Moleskine" width="700" height="400" /></p>
<p>Moleskine makes some of the most loved notebooks by creative people in the world. They are beautifully designed in that they are very simplistic. Another bonus with the Moleskine is that they come in a wide range of formats depending on what you need. I like to keep a <a href="http://www.moleskine.com/catalogue/classic/notebooks/plain_notebook__large.php">plain notebook</a> around simply because I can both write and draw in it.</p>
<p>You might also want to consider their <a href="http://www.moleskine.com/catalogue/classic/special/storyboard_notebook__pocket.php">storyboard version</a> which can easily be adapted for webdesign drawing.</p>
<h2><a href="http://webdesign-sketchbook.com/">Web Design Sketchbook</a></h2>
<p><img class="alignnone size-medium wp-image-713 border" title="Web Design Sketchbook" src="http://www.xldstudios.com/wp-content/uploads/2011/11/p2-large-700x469.jpg" alt="Web Design Sketchbook" width="700" height="469" /></p>
<p>The Web Design Sketchbook contains pages for both drawing and planning. First in the sketchbook are design and content planning questions to help to nail objectives and structure while then featuring brainstorming pages with browser chrome and grids.</p>
<p>What&#8217;s particularly neat with this is that they offer you a full downloadable version of it if you want to print it out yourself. If you prefer to get it spiral bound, you can buy the printed sketchbook directly from them.</p>
<h2><a href="http://www.uistencils.com/products/browser-sketch-pad">UI Stencils</a></h2>
<p><img class="alignnone size-medium wp-image-714 border" title="UI Stencils" src="http://www.xldstudios.com/wp-content/uploads/2011/11/Browser_Pad-2-700x346.jpg" alt="UI Stencils" width="700" height="346" /></p>
<p>Another option with a sketchpad including a browser chrome on each page is the <a href="http://www.uistencils.com/products/browser-sketch-pad">UI Stencils Browser Sketch Pad</a>. However, it isn&#8217;t the paper pad that gets me the most excited, but their <a href="http://www.uistencils.com/products/website-stencil-kit">Website Stencil Kit </a>that includes stencils of nice UI icons to use in your sketches.</p>
<p>While the Stencil Kit is fairly expensive, it is nice to work with and for someone who can&#8217;t draw very well, it ups my sketches and makes it easier for my clients to see what I have in mind.</p>
<h2><a href="http://960.gs/">960.gs Sketch Sheets</a></h2>
<p><img class="alignnone size-medium wp-image-715 border" title="960.gs Sketch Sheets" src="http://www.xldstudios.com/wp-content/uploads/2011/11/960gs-sketch-sheets-700x534.png" alt="960.gs Sketch Sheets" width="700" height="534" /></p>
<p>As part of the 960.gs download, you get a folder with sketch sheets that you can print out using your own printer. They include two versions of all their column layout. One page with a big browser chrome and space for notes and one four-up display with the same info.</p>
<h2><a href="http://www.raincreativelab.com/paperbrowser/">Paper Browser</a></h2>
<p><img class="alignnone size-medium wp-image-716" title="Paper Browser" src="http://www.xldstudios.com/wp-content/uploads/2011/11/paperbrowser-700x307.png" alt="Paper Browser" width="700" height="307" /></p>
<p>Paper Browser is another print yourself wireframing tool. It has two types of pages, one quick sketch with just a dotted grid and some base guidelines for helping you get the main wireframe done. A second browser sketch page is offered with a grid layout and full browser chrome to help you design the finer elements of the website.</p>
<p>They are also taking pre-orders for a physical notebook if you want to carry something bigger with you. It looks elegant and is one that I am definitely ordering once it comes out.</p>
<h2>Conclusion</h2>
<p>There are many notebooks to choose from and you might need to try a few before finding your own favorite. Do you have another favorite than anyone that we listed? <strong>Let us know in the comments!</strong></p>
<p><a href="http://www.xldstudios.com/web-designer-sketchbooks/">5 Time Saving Notebooks and Sketchbooks for Web Designers</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/web-designer-sketchbooks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check For Odd/Even Numbers in PHP</title>
		<link>http://www.xldstudios.com/check-for-oddeven-numbers-in-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=check-for-oddeven-numbers-in-php</link>
		<comments>http://www.xldstudios.com/check-for-oddeven-numbers-in-php/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 06:00:15 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Even]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[If Even Number]]></category>
		<category><![CDATA[Numbers]]></category>
		<category><![CDATA[Odd]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=694</guid>
		<description><![CDATA[<p>Every time I wish to insert something or style something with alternate style, every other, third, fourth etc. row/column or item, I usually have a PHP If Statement at hand. While you can easily check if something matches something else or a number of other conditionals, checking for odd and even numbers requires some mathematical ...</p><p><a href="http://www.xldstudios.com/check-for-oddeven-numbers-in-php/">Check For Odd/Even Numbers in PHP</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Every time I wish to insert something or style something with alternate style, every other, third, fourth etc. row/column or item, I usually have a PHP If Statement at hand. While you can easily check if something matches something else or a number of other conditionals, checking for odd and even numbers requires some mathematical thinking. Follow on after the jump to see how.</p>
<h2><span id="more-694"></span>What Characterizes Odd and Even Numbers?</h2>
<p>The key to making this function is realizing what makes odd and even numbers be odd and even. Thinking about it for a minute, even numbers are even because they can be split in half or to put it mathematically correct, they can always be divided by two. Odd numbers are the numbers that cannot be divided by two, or simply the remaining ones.</p>
<h2>Writing The PHP</h2>
<p>Using the basics of odd and even numbers, we can easily conclude that the following if-statement will check whether a number (here contained in the variable $number) is even or not:</p>
<pre escaped="true" lang="php">$number = 2;
if ($number % 2 == 0) { echo "Even!"; } else { echo "Odd!"; }</pre>
<p>We can however take this one step further to help ourself be more efficient.</p>
<h2>Turning It Into A Function</h2>
<p>By tweaking the above if-statement a bit, it can be turned into a function, allowing us to reuse it across projects and save space and clean up our code.</p>
<pre escaped="true" lang="php">function is_half($num) {
  if ($num % 2 == 0) {
  return false;
 } else {
    return true;
  }
}</pre>
<p>This function is a very basic snippet of PHP that is designed to be used in an if-statement later like this:</p>
<pre escaped="true" lang="php">if(is_half("2")) { echo "Even!" }</pre>
<p><a href="http://www.xldstudios.com/check-for-oddeven-numbers-in-php/">Check For Odd/Even Numbers in PHP</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/check-for-oddeven-numbers-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Steps To Successfully Evaluate All Client Projects And Make Clients Happier</title>
		<link>http://www.xldstudios.com/successfully-evaluate-projects/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=successfully-evaluate-projects</link>
		<comments>http://www.xldstudios.com/successfully-evaluate-projects/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 06:00:41 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[Clients]]></category>
		<category><![CDATA[Delta File]]></category>
		<category><![CDATA[Evaluation]]></category>
		<category><![CDATA[Freelancer]]></category>
		<category><![CDATA[Happier Clients]]></category>
		<category><![CDATA[Improvement]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Proposal]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Satisfied Clients]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=653</guid>
		<description><![CDATA[<p>I firmly believe that there is something to be learnt from every new project that you complete. It is incredibly easy to just briefly think about something you want to change in the process, never to write it down or remember it again. At the same time, it is easy to just slavishly move through ...</p><p><a href="http://www.xldstudios.com/successfully-evaluate-projects/">5 Steps To Successfully Evaluate All Client Projects And Make Clients Happier</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I firmly believe that there is something to be learnt from every new project that you complete. It is incredibly easy to just briefly think about something you want to change in the process, never to write it down or remember it again. At the same time, it is easy to just slavishly move through project after project in the same way without a thought to potential improvements. Here I want to give you five steps that you can take to successfully evaluate all client projects and elevate yourself.</p>
<p>Projects start before the contract is signed. Don&#8217;t limit your thinking to just the project itself but broaden yourself to include the project proposal and estimate phase. Don&#8217;t wait to evaluate this until the project is completed. Immediately after signing a deal, go through the steps here. If a client is slightly unhappy with the proposal experience, why not take the opportunity and change it for the rest of the project which is likely to be a longer period of time anyway.</p>
<p><span id="more-653"></span></p>
<h2>1.Don&#8217;t Wait. Do It Now!</h2>
<p>Procrastination just has to be side-stepped. There is no reason to wait with the evaluation and block of a time every month when you sit down and do evaluations. This is dangerous. Waiting with evaluations ultimately results in less than ideal conclusions because you have forgotten much about the experience. Right after the project is completed or after a proposal is accepted, start doing your evaluation.</p>
<p>Keep a file together with the projects (in the business world this is called a delta file) which you can open at any time and <strong>quickly jot down a note about something that didn&#8217;t go well or that you want to change in the future</strong>. Not only will this improve your business in the future, but it will help you right now to remember it until later. Do it not and don&#8217;t wait. You will forget, I promise.</p>
<p>By being attentive you have an extra benefit to gain. Clients will be <strong>impressed</strong> by the fact that you constantly evaluate yourself and do it quickly and swiftly. Not only will you provide a better service in itself but being impressive in the way you do business never hurts.</p>
<h2>2. Don&#8217;t Make a Fuss About It</h2>
<p>Please <strong>don&#8217;t turn your evaluations into a selling-point by proudly pointing out how attentive you are</strong> and that you constantly try to improve and evaluate the project and proposal processes. Even though you might think that this is positive, it is not. By making a fuss out of something that clients will think of as obvious you end up looking like a fool.</p>
<p>Additionally, by making a fuss out of it you shift the focus from the result of the evaluation to the evaluations themselves which just sends the wrong signals. Plus, it makes it seem like another big task that needs to be completed.</p>
<h2>3. Think Like Your Client</h2>
<p>Much of the evaluation can be done by trying to <strong>put yourself in your client&#8217;s position</strong>. Questions like: <em>How would I have reacted to this email? Would I have understood the meaning of this if I didn&#8217;t do this for a living?</em> are good questions to start with. Not only do these provide you with an excellent base for evaluating yourself you can <strong>improve instantly</strong> by asking such questions before communicating with a client.</p>
<p>Be wary of assuming too much. Just do the basics of communication. Don&#8217;t try to ask yourself: &#8220;How would I have liked this design?&#8221;. You will just end up with a headache and a result that isn&#8217;t particularly helpful to you.</p>
<h2>4. Don&#8217;t Be Afraid To Ask</h2>
<p>When you have tried to think like your client, which I advise you do <strong>first</strong>, ask them. As before, don&#8217;t make a big fuss about it. Just ask them a few questions about the project. Make it easy for them. Keep the questions themselves short and try to craft them for a short answer. You don&#8217;t want to bother your client with a lot of questions that have very open ended answers. Your client will be impressed that you do ask them about their opinion but <strong>don&#8217;t abuse their time</strong>. The keywords are <strong>few</strong>,<strong> short</strong>, <strong>targeted</strong> with <strong>short answers</strong>.</p>
<h2>5. Collect, Summarize, Review and Improve</h2>
<p>Finally, continuously collect the material as a base for your review into a folder or file and then at the end of a project (or proposal) summarize the material you have. By no means should this be long. Again, keeping it short will help yourself. A summary could consist of a few paragraphs just highlighting some improvements that you and your client has put forward.</p>
<p>Once you have a summary, review it and think about how an issue can be addressed and the problem solved. When you do this, clearly write down a short goal for yourself in proper delta file that you review at least every week. This way you don&#8217;t forget what you need to do to improve.</p>
<h2>Conclusion</h2>
<p>You have much to gain from evaluating your projects and proposals as an ongoing process. Not only will it impress your customers but it will help you grow as a person and business by offering a better service. In turn, offering a better service means that you will sign more deals and can end up charging more for the same work, simply because you are better.</p>
<p><a href="http://www.xldstudios.com/successfully-evaluate-projects/">5 Steps To Successfully Evaluate All Client Projects And Make Clients Happier</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/successfully-evaluate-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Front-end Editor Plugin</title>
		<link>http://www.xldstudios.com/wordpress-front-end-editor-plugin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-front-end-editor-plugin</link>
		<comments>http://www.xldstudios.com/wordpress-front-end-editor-plugin/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 06:00:54 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Admin Panel]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[Editor]]></category>
		<category><![CDATA[Frontend Editor]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=672</guid>
		<description><![CDATA[<p>Sometimes the idea of having to back and forth between the backend and frontend of WordPress is daunting for clients who would much rather just click in the page when logged in to edit the content. I don&#8217;t blame them. This is an area where Drupal in general is much better than WordPress is. The ...</p><p><a href="http://www.xldstudios.com/wordpress-front-end-editor-plugin/">WordPress Front-end Editor Plugin</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Sometimes the idea of having to back and forth between the backend and frontend of WordPress is daunting for clients who would much rather just click in the page when logged in to edit the content. I don&#8217;t blame them. This is an area where Drupal in general is much better than WordPress is. The admin panel is in the website.</p>
<p>However, there are WordPress plugins for everything. So far, a plugin called &#8220;<em><a href="http://wordpress.org/extend/plugins/front-end-editor/">Front-end Editor</a></em>&#8221; is the best one I have found, however I want your input. Do you use a frontend editor plugin? If so, which one do you use?</p>
<p><a href="http://www.xldstudios.com/wordpress-front-end-editor-plugin/">WordPress Front-end Editor Plugin</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/wordpress-front-end-editor-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Columns in the WordPress Post Editor With a Custom Shortcode</title>
		<link>http://www.xldstudios.com/wordpress-columns-shortcode/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-columns-shortcode</link>
		<comments>http://www.xldstudios.com/wordpress-columns-shortcode/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 06:00:10 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Columns]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Columns]]></category>
		<category><![CDATA[do_shortcode]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Post Editor]]></category>
		<category><![CDATA[Shortcode]]></category>
		<category><![CDATA[WordPress Shortcode]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=662</guid>
		<description><![CDATA[<p>One of the issues with the built-in TinyMCE editor in WordPress is that it is hard for clients to create more complex layouts in it. Even if you as a designer set up the page correctly it is easy for someone without HTML knowledge to break it. Until the editor supports column creation natively, you ...</p><p><a href="http://www.xldstudios.com/wordpress-columns-shortcode/">Create Columns in the WordPress Post Editor With a Custom Shortcode</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>One of the issues with the built-in TinyMCE editor in WordPress is that it is hard for clients to create more complex layouts in it. Even if you as a designer set up the page correctly it is easy for someone without HTML knowledge to break it. Until the editor supports column creation natively, you are best of creating a series of shortcodes for percentage based columns using the WordPress Shortcode API. In this tutorial, I&#8217;m going to show you how.</p>
<p>First we are going to set up the shortcode code in the theme and finish off by adding some CSS styles for it to work well on the site. Remember that this is a good asset for you to have across different projects as well.<span id="more-662"></span></p>
<h2>Crash Course in WordPress Shortcodes</h2>
<p>Before getting into the code for this specific shortcode I want to tell you about the WordPress Shortcode API and how it functions. If you already know it, please scroll down to the next section.</p>
<p>You have probably seen plugins use shortcodes all the time. Inserted into posts they look like code but is just normal text which doesn&#8217;t mess with the formatting in the editor. Example of such a shortcode is [photo_gallery] or [photo_gallery id="1"].</p>
<p>There are some special attributes required to create shortcodes with options that is not necessary in this tutorial, instead we are going to move right to shortcodes that look like this: [column]My text[/column].</p>
<p>Codes like the last one are called enclosing shortcodes, compared to the self-enclosing codes in the first example. They are used to apply some type of formatting to a block of text or images in-between.</p>
<h2>What We Are Going To Create</h2>
<p>In order to make some columns that can be used in any area on the site served by the post editor, we are going to turn to making a series of divs that each apply a class to a piece of text. This class is going to be controlled by some CSS to turn the layout into columns.</p>
<p>To allow for different widths, we will create the following fractions: halves, thirds, fourths, fifths and sixths. There is no point in continuing to sevenths as this will be a very small area (just under 15% wide).</p>
<p>Here is where you need to watch out and put your mathematical thinking cap on. We are talking about fractions here, which means you can save yourself some trouble. Instead of creating: one half, two halves; one third, two thirds, three thirds; one fourth, two fourths, three fourths, four fourths; you simply realize that a lot of these fractions are the same thing.</p>
<p>For example: two halves, three thirds and four fourths are all one whole, which defeats the point of a columns as it is. Secondly, two fourths is the same as one half, eliminating the need for that shortcode.</p>
<p>As a result of this, here are the codes that we will need to create: <em>one half, one third, one fourth, one fifth, one sixth, two thirds, three fourths, two fifths, three fifths, four fifths, five sixths</em>.</p>
<h2>The Shortcode Code</h2>
<p>With the thinking all done (almost), we are ready to get into the actual PHP code. Open up your functions.php file and get ready to create a function.</p>
<pre escaped="true" lang="php">function theme_shortcode_column($atts, $content = null, $code) {
	return '&lt;div class="'.$code.'"&gt;' . do_shortcode(trim($content)) . '&lt;/div&gt;';
}</pre>
<p>What you have above is a normal WordPress function that is slightly smart. First of all, we create a function that has three variables going into it. These are all standard variables in the Shortcode API which are going to get populated when we define the shortcode.</p>
<h3>The Function Itself</h3>
<p>First we have $atts which represents arguments going into the shortcode.</p>
<p>Secondly, we have $content = null. This bit pulls in the content of the shortcode and is used for the enclosing shortcodes to define where to place the content between the shortcode opening and closing tags. By setting it to equal null, we set the default value for the content variable, should nothing be sent from the post editor.</p>
<p>Normally, these two are all that would be required to create a simple enclosing shortcode. However, doing it the simple way would force us to create one function for each of the columns. Instead, we are going to introduce a final variable: $code.</p>
<p>The $code variable simply contains the name of the shortcode we write in the post editor, when it equals the name of the shortcode as defined in the functions file. Simplified you could just say it echos the name of the shortcode. We use this to our advantage here to save space, only having to create one function for all our column shortcodes.</p>
<h3>Returning The Result</h3>
<p>The next line in the function returns the result. Simplifying this and removing all PHP code would turn this into a standard div, with the class of for example: one_third.</p>
<p>Here is where we call the $code variable to print the shortcode variable. This means that the name of the shortcode is going to end up being the name of the class that we use to position our columns.</p>
<p>Instead of just echoing the $content variable by itself, we use another neat WordPress function to make sure that we can use other shortcodes within this shortcode. This function is called do_shortcode and ensures that WordPress recognizes its shortcodes inside of the content being echoed in $content.</p>
<h3>Registering the Shortcode</h3>
<p>With this smart function created, we just need to make WordPress recognize a new shortcode and use this function as a template for outputting it.</p>
<pre escaped="true" lang="php">add_shortcode('one_half', 'theme_shortcode_column');</pre>
<p>This short snippet tells WordPress to add a shortcode by the name of one_half (making this the shortcode we use) and have it use the function theme_shortcode_column to control how the content appears.</p>
<p>This snippet needs to be repeated for each of the shortcodes we want to add but with just one function.</p>
<h3>A Function Variation And Double The Fun</h3>
<p>I haven&#8217;t been quite honest saying that we only need one function. In fact, we need two. To be able to control the styling and clear the floats used for positioning, a series of &#8220;last&#8221; shortcodes need to be created. The syntax stays the same, with the addition of just a little div clearing and another function name:</p>
<pre escaped="true" lang="php">function theme_shortcode_column_last($atts, $content = null, $code) {
	return '&lt;div class="'.str_replace('_last','',$code).' last"&gt;' . do_shortcode(trim($content)) . '&lt;/div&gt;&lt;div class="clearboth"&gt;&lt;/div&gt;';
}</pre>
<p>Also adding the _last appended shortcodes as a new series:</p>
<pre escaped="true" lang="php">add_shortcode('one_half_last', 'theme_shortcode_column_last');</pre>
<h2>The Final Code</h2>
<p>For your reference, I am pasting the full PHP code here as well as the CSS code required for styling below.</p>
<h3>PHP Shortcodes Code</h3>
<pre escaped="true" lang="php">function theme_shortcode_column($atts, $content = null, $code) {
	return '&lt;div class="'.$code.'"&gt;' . do_shortcode(trim($content)) . '&lt;/div&gt;';
}
function theme_shortcode_column_last($atts, $content = null, $code) {
	return '&lt;div class="'.str_replace('_last','',$code).' last"&gt;' . do_shortcode(trim($content)) . '&lt;/div&gt;&lt;div class="clearboth"&gt;&lt;/div&gt;';
}

add_shortcode('one_half', 'theme_shortcode_column');
add_shortcode('one_third', 'theme_shortcode_column');
add_shortcode('one_fourth', 'theme_shortcode_column');
add_shortcode('one_fifth', 'theme_shortcode_column');
add_shortcode('one_sixth', 'theme_shortcode_column');

add_shortcode('two_third', 'theme_shortcode_column');
add_shortcode('three_fourth', 'theme_shortcode_column');
add_shortcode('two_fifth', 'theme_shortcode_column');
add_shortcode('three_fifth', 'theme_shortcode_column');
add_shortcode('four_fifth', 'theme_shortcode_column');
add_shortcode('five_sixth', 'theme_shortcode_column');

add_shortcode('one_half_last', 'theme_shortcode_column_last');
add_shortcode('one_third_last', 'theme_shortcode_column_last');
add_shortcode('one_fourth_last', 'theme_shortcode_column_last');
add_shortcode('one_fifth_last', 'theme_shortcode_column_last');
add_shortcode('one_sixth_last', 'theme_shortcode_column_last');

add_shortcode('two_third_last', 'theme_shortcode_column_last');
add_shortcode('three_fourth_last', 'theme_shortcode_column_last');
add_shortcode('two_fifth_last', 'theme_shortcode_column_last');
add_shortcode('three_fifth_last', 'theme_shortcode_column_last');
add_shortcode('four_fifth_last', 'theme_shortcode_column_last');
add_shortcode('five_sixth_last', 'theme_shortcode_column_last');</pre>
<h3>CSS For Styling The Columns</h3>
<p>For speed and ease of use in a project, I have compressed the code to single-line format.</p>
<pre escaped="true" lang="css">.one_half,.one_third,.two_third,.three_fourth,.one_fourth,.one_fifth,.two_fifth,.three_fifth,.four_fifth,.one_sixth,.five_sixth { position:relative; margin-right:4%; float:left; min-height:1px; height:auto!important; height:1px; }
.one_half { width:48%; }
.one_third { width:30.6666%; }
.two_third { width:65.3332%; }
.one_fourth { width:22%; }
.two_fourth { width:48%; }
.three_fourth { width:74%; }
.one_fifth { width:16.8%; }
.two_fifth { width:37.6%; }
.three_fifth { width:58.4%; }
.four_fifth { width:79.2%; }
.one_sixth { width:13.3333%; }
.two_sixth { width:30.6666%; }
.three_sixth { width:47.9998%; }
.four_sixth { width:65.3332%; }
.five_sixth { width:82.6665%; }
.last { margin-right:0!important; clear:right; }
.one_half .one_half { margin-right:8.3333%; width:45.8333%; }
.one_half .one_third { margin-right:8.3333%; width:27.7778%; }
.one_half .two_third { margin-right:8.3333%; width:63.8889%; }
.two_third .one_third { margin-right:6.1224%; width:29.2517%; }
.two_third .two_third { margin-right:6.1224%; width:64.6258%; }
.two_third .one_fourth { margin-right:6.1224%; width:20.4082%; }</pre>
<h2>Conclusion</h2>
<p>Using shortcodes is very powerful and especially for creating columns in WordPress, this is a user-friendly way and much more foolproof than entering and preparing divs in the HTML editor.</p>
<p>Have you used shortcodes before? Is this useful for you? If you have any ideas on how to make the columns shortcode better or improve upon this, or have a good example of how you used this shortcode, please share it with us.</p>
<p><a href="http://www.xldstudios.com/wordpress-columns-shortcode/">Create Columns in the WordPress Post Editor With a Custom Shortcode</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/wordpress-columns-shortcode/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Make Your Website More Engaging With Good Images</title>
		<link>http://www.xldstudios.com/make-your-website-more-engaging-with-good-images/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=make-your-website-more-engaging-with-good-images</link>
		<comments>http://www.xldstudios.com/make-your-website-more-engaging-with-good-images/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 06:00:44 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Attention]]></category>
		<category><![CDATA[Conversion]]></category>
		<category><![CDATA[Conversion Rate]]></category>
		<category><![CDATA[Engaging]]></category>
		<category><![CDATA[Engaging Pages]]></category>
		<category><![CDATA[Faces]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[Physical Location]]></category>
		<category><![CDATA[Staff Images]]></category>
		<category><![CDATA[Usable World]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=647</guid>
		<description><![CDATA[<p>We all know that content is king but as the internet is turning away from being text driven to be more about media, a shift that happened years ago with faster internet speeds, you need to adapt the sites you build. One foolproof method of making your website more engaging is to use the right ...</p><p><a href="http://www.xldstudios.com/make-your-website-more-engaging-with-good-images/">Make Your Website More Engaging With Good Images</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>We all know that content is king but as the internet is turning away from being text driven to be more about media, a shift that happened years ago with faster internet speeds, you need to adapt the sites you build. One foolproof method of making your website more engaging is to use the right images. Here are suggestions on what you think about.</p>
<p><span id="more-647"></span></p>
<h2>Quality is King</h2>
<p>Regardless of which tips you use below, one this is for certain.Don&#8217;t even try to add low-quality images that are heavily compressed or scaled up from a small size. All you are doing is planting a bad feeling with your visitors. If you are going to use images (and you should), make sure they are tack sharp!</p>
<p>It isn&#8217;t enough with images that are technically right in exposure and sharpness though. A common snapshot isn&#8217;t enough. Hire a professional photographer to take engaging photos specifically for your site that capture the feeling that you want to convey.</p>
<h2>Show Your Physical Location</h2>
<p><img class="alignnone size-medium wp-image-650" title="images-help-your-website-2" src="http://www.xldstudios.com/wp-content/uploads/2011/10/images-help-your-website-2-700x357.jpg" alt="" width="700" height="357" /></p>
<p>Obviously, this point only applies if you have a physical location such as a store or showroom or if you provide services dependent on a location. Don&#8217;t be afraid to show off your offices on your website as this can be a big selling point. Example: You sell flowers. Showing a well decorated store full of flowers will have your potential customers wanting to go to your store because it looks nice. Another example: You are a law firm. Displaying your modern offices to clients will fill them with a sense that you are professional and want to visit you.</p>
<p>You don&#8217;t want to place these photos anywhere on the site. Inserting them on a page specifically describing your store/showroom/offices is perfect. If you don&#8217;t have a page like that, consider adding them to your &#8220;about us&#8221; page.</p>
<h2>Staff Photos Can Make a Difference</h2>
<p>Read carefully. This first bit is very important. Some industries should be very cautious about taking this advice. If your company does medical care or deal with unstable people, you might want to consider not having staff photographs on your website. Instead of being a positive element, it may put employees at risk. Before making a decision to put photos online, speak to your employees and see how they feel about it.</p>
<p>That being said, business is built on trust. Humans are going to trust a face more easily than a name. By having photos and descriptions of your staff on your website, you help to connect the expertise that you want to show with your potential clients. Instead of only reading about whom they are about to deal with, they can see the face of the person. At the end of the day, you are much more likely to gain a client this way.</p>
<h2>Use Faces To Your Advantage</h2>
<p><img class="size-medium wp-image-649" title="images-help-your-website-1" src="http://www.xldstudios.com/wp-content/uploads/2011/10/images-help-your-website-1-700x464.jpg" alt="" width="700" height="464" /></p>
<p>Following from the previous point, faces are good in general on your website as humans react to human faces. People spend more time looking at your site when they are able to connect with a fellow human being, even if it is through an image.</p>
<p><a href="http://usableworld.com.au/2009/03/16/you-look-where-they-look/">In a little experiment</a>, Usable World tracked visitors eye movements across sites with faces. Interestingly enough, it is not just the presence of an image that matters but where they are looking. People tend to look where the person in the photo is looking. Use this to your advantage. Place a photo on your website that looks over where you want your visitors to look and watch the conversion rate go right up.</p>
<h2>Conclusion</h2>
<p>Images are truly powerful in making your pages more engaging. Perhaps the most interesting bit is that people look where a subject in a photo is looking.</p>
<p>While the concept of images are easier implemented on some types of websites, most companies online today should be able to take advantage of images to raise the conversion rate of their pages.</p>
<p>These are just some tips on how images make your site more effective and we know there are more. Do you have a good example of how images made a site better? What has your experience taught you? We&#8217;d love to hear your stories!</p>
<p><a href="http://www.xldstudios.com/make-your-website-more-engaging-with-good-images/">Make Your Website More Engaging With Good Images</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/make-your-website-more-engaging-with-good-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 Beta 2 Is Available</title>
		<link>http://www.xldstudios.com/wordpress-3-3-beta-2-is-available/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-3-3-beta-2-is-available</link>
		<comments>http://www.xldstudios.com/wordpress-3-3-beta-2-is-available/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 10:42:58 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[WordPress 3.3]]></category>
		<category><![CDATA[WordPress Beta]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=657</guid>
		<description><![CDATA[<p>The WordPress team has rolled out the second beta version of WordPress 3.3 due to arrive as a final version in November. The major changes since beta 1 are listed below, taken from the official blog post about the release. You can download beta 2 to keep testing it and report bugs to help the ...</p><p><a href="http://www.xldstudios.com/wordpress-3-3-beta-2-is-available/">WordPress 3.3 Beta 2 Is Available</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>The WordPress team has rolled out the second beta version of WordPress 3.3 due to arrive as a final version in November. The major changes since beta 1 are listed below, taken from <a href="http://wordpress.org/news/2011/10/wordpress-3-3-beta-2/">the official blog post</a> about the release. You can download beta 2 to keep testing it and report bugs to help the development.</p>
<p><em><strong>Note:</strong> WordPress 3.3 beta 2 is unfinished and unstable software that should only be used for testing purposes and not on live, production websites.</em></p>
<blockquote>
<ul>
<li>Updated the Blue theme</li>
<li>Fixed IE7 and RTL support</li>
<li>Improved flyout menu styling and fixed several glitches</li>
<li>Finished the Pointers implementation</li>
<li>Landed the dashboard Welcome box for new installs</li>
<li>Improved contextual help styling</li>
<li>Tweaked the admin bar a little more</li>
<li>Fixed a bunch of bugs</li>
</ul>
</blockquote>
<p><a href="http://www.xldstudios.com/wordpress-3-3-beta-2-is-available/">WordPress 3.3 Beta 2 Is Available</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/wordpress-3-3-beta-2-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Freebie Resource: Subtle Patterns</title>
		<link>http://www.xldstudios.com/another-freebie-resource-subtle-patterns/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=another-freebie-resource-subtle-patterns</link>
		<comments>http://www.xldstudios.com/another-freebie-resource-subtle-patterns/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 06:00:04 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Pattern]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Subtle Patterns]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=637</guid>
		<description><![CDATA[<p>Here&#8217;s another very nice freebie resource. When looking for patterns to use in your designs, have a look at Subtle Patterns which has a large database of user-submitted patterns that all tile perfectly and that you can download as Photoshop files. What I especially like about them is that you can download everything as one ...</p><p><a href="http://www.xldstudios.com/another-freebie-resource-subtle-patterns/">Another Freebie Resource: Subtle Patterns</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another very nice freebie resource. When looking for patterns to use in your designs, have a look at <a href="http://subtlepatterns.com/">Subtle Patterns</a> which has a large database of user-submitted patterns that all tile perfectly and that you can download as Photoshop files. What I especially like about them is that you can download everything as one big Photoshop pattern file to save some time!</p>
<p><a href="http://subtlepatterns.com/">Visit Subtle Patterns</a> and search and see what you might be able to use on there for your next project.</p>
<p><a href="http://www.xldstudios.com/another-freebie-resource-subtle-patterns/">Another Freebie Resource: Subtle Patterns</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/another-freebie-resource-subtle-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source Exchange Rates API</title>
		<link>http://www.xldstudios.com/open-source-exchange-rates-api/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=open-source-exchange-rates-api</link>
		<comments>http://www.xldstudios.com/open-source-exchange-rates-api/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 06:00:29 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Currency Conversion]]></category>
		<category><![CDATA[Exchange Rates]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Free Currency Conversion]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[money.js]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=642</guid>
		<description><![CDATA[<p>Earlier this week I came across an interesting API, called the Open Source Exchange Rates API. If you have ever tried to pull exchange rates to calculate something on the fly in your code, you know how hard this is as most APIs charge for the data they provide. The popular solution has been to, ...</p><p><a href="http://www.xldstudios.com/open-source-exchange-rates-api/">Open Source Exchange Rates API</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Earlier this week I came across an interesting API, called the <a href="http://josscrowcroft.github.com/open-exchange-rates/">Open Source Exchange Rates API</a>. If you have ever tried to pull exchange rates to calculate something on the fly in your code, you know how hard this is as most APIs charge for the data they provide. The popular solution has been to, using some PHP magic, perform a Google search on the currency conversion through their search API, which works but is a little unstable and frankly a pain in the ass.</p>
<p>The <a href="http://josscrowcroft.github.com/open-exchange-rates/">Open Source Exchange Rates API</a> works great though, providing a JSON formatted API which is easy to pull in and use in a number of programming languages. It is as you understand, fully free and also updated every hour with the latest currency data. On their website they have <a href="http://josscrowcroft.github.com/open-exchange-rates/">proper documentation</a> on how to use the API.</p>
<p><a href="http://www.xldstudios.com/open-source-exchange-rates-api/">Open Source Exchange Rates API</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/open-source-exchange-rates-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freebie Resource: iOS 5 GUI PSD for iPhone</title>
		<link>http://www.xldstudios.com/freebie-resource-ios-5-gui-psd-for-iphone/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=freebie-resource-ios-5-gui-psd-for-iphone</link>
		<comments>http://www.xldstudios.com/freebie-resource-ios-5-gui-psd-for-iphone/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 13:07:27 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 5]]></category>
		<category><![CDATA[iOS GUI PSD]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PSD Template]]></category>
		<category><![CDATA[Teehan+Lax]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=632</guid>
		<description><![CDATA[<p>Having access to the graphical elements of iOS is very nice when doing mockups in Photoshop for web apps or full iOS apps. Thanks to Teehan+Lax we can now enjoy an updated version of his iOS GUI PSD now for iOS 5. Just head over to his website and download the Photoshop file.</p><p><a href="http://www.xldstudios.com/freebie-resource-ios-5-gui-psd-for-iphone/">Freebie Resource: iOS 5 GUI PSD for iPhone</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Having access to the graphical elements of iOS is very nice when doing mockups in Photoshop for web apps or full iOS apps. Thanks to Teehan+Lax we can now enjoy an updated version of his iOS GUI PSD now for iOS 5.</p>
<p>Just head over to his website and <a href="http://www.teehanlax.com/blog/ios-5-gui-psd-iphone-4s/">download the Photoshop file</a>.</p>
<p><a href="http://www.xldstudios.com/freebie-resource-ios-5-gui-psd-for-iphone/">Freebie Resource: iOS 5 GUI PSD for iPhone</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/freebie-resource-ios-5-gui-psd-for-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Join Our Free &#8220;Boosting Your WordPress Site&#8217;s Performance&#8221; Webinar on October 18</title>
		<link>http://www.xldstudios.com/join-our-free-boosting-your-wordpress-sites-performance-webinar-on-october-18/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=join-our-free-boosting-your-wordpress-sites-performance-webinar-on-october-18</link>
		<comments>http://www.xldstudios.com/join-our-free-boosting-your-wordpress-sites-performance-webinar-on-october-18/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 06:00:13 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Webinar]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Bernskiold Media]]></category>
		<category><![CDATA[Course]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=613</guid>
		<description><![CDATA[<p>Once again we are hosting a free WordPress-themed webinar together with our parent company, Bernskiold Media. The topic this time is Boosting Your WordPress Site&#8217;s Performance and will go through a number of different techniques to how you can make WordPress snappier for your visitors, including a proper caching setup, saving on database calls and ...</p><p><a href="http://www.xldstudios.com/join-our-free-boosting-your-wordpress-sites-performance-webinar-on-october-18/">Join Our Free &#8220;Boosting Your WordPress Site&#8217;s Performance&#8221; Webinar on October 18</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Once again we are hosting a <em>free</em> WordPress-themed webinar together with our parent company, Bernskiold Media. The topic this time is <a href="http://www.bernskioldmedia.com/webinars/boosting-your-wordpress-sites-performance/"><strong>Boosting Your WordPress Site&#8217;s Performance</strong></a> and will go through a number of different techniques to how you can make WordPress snappier for your visitors, including a proper caching setup, saving on database calls and much more.</p>
<p>The <em>free</em> webinar will be live on October 18 at 2p.m Eastern Time (<a href="http://www.timeanddate.com/worldclock/fixedtime.html?msg=Boosting+Your+WordPress+Sites+Performance&amp;iso=20111018T20&amp;p1=291&amp;ah=1">what time is this for me?</a>) and a replay will be available afterwards if you cannot make it. As always though, the live webinar will have time for your questions so it is more beneficial to join in live.</p>
<p><a href="http://www.xldstudios.com/join-our-free-boosting-your-wordpress-sites-performance-webinar-on-october-18/">Join Our Free &#8220;Boosting Your WordPress Site&#8217;s Performance&#8221; Webinar on October 18</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/join-our-free-boosting-your-wordpress-sites-performance-webinar-on-october-18/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Snippet: Go to Site Selected in Drop-down Menu</title>
		<link>http://www.xldstudios.com/javascript-snippet-go-to-site-selected-in-drop-down-menu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=javascript-snippet-go-to-site-selected-in-drop-down-menu</link>
		<comments>http://www.xldstudios.com/javascript-snippet-go-to-site-selected-in-drop-down-menu/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 06:00:39 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Drop-down]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Snippet]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=610</guid>
		<description><![CDATA[<p>Once in a while I need users to be able to select an option in a drop-down menu and have the option load a URL directly. This isn&#8217;t possible with just HTML alone but with a quick little javascript function, this is easily achieved. The Javascript It isn&#8217;t really that hard of a javascript snippet. ...</p><p><a href="http://www.xldstudios.com/javascript-snippet-go-to-site-selected-in-drop-down-menu/">Javascript Snippet: Go to Site Selected in Drop-down Menu</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Once in a while I need users to be able to select an option in a drop-down menu and have the option load a URL directly. This isn&#8217;t possible with just HTML alone but with a quick little javascript function, this is easily achieved.</p>
<h2><span id="more-610"></span>The Javascript</h2>
<p>It isn&#8217;t really that hard of a javascript snippet. First we set up a variable (named URL here) which grabs the value of our selected url list based on the class applied to the list. Finally it loads this URL into the address bar and submits it. I have bolded the two bits of the snippet that needs to be replaced with the name of the form in the HTML code.</p>
<pre escaped="true" lang="javascript">&lt;script language="javascript"&gt;
	function gotosite() {
		var URL = document.<strong>event_type_selector</strong>.url_list.options[document.<strong>event_type_selector</strong>.url_list.selectedIndex].value; window.location.href = URL;
	}
&lt;/script&gt;</pre>
<h2>The HTML</h2>
<p>This is really just a standard drop-down box in a form element that calls the javascript function. The only thing to pay attention to is the name given to the form which is used in the javascript selector above (bolded).</p>
<pre escaped="true" lang="html4strict">&lt;form name="<strong>event_type_selector</strong>" method="post" action="#"&gt;
	&lt;select name="url_list" class="event-type-selector-dropdown" onchange="gotosite()"&gt;
		&lt;option value="" selected="selected" disabled="disabled"&gt;Please select...&lt;/option&gt;
		&lt;option value="?id=1"&gt;Option 1&lt;/option&gt;
		&lt;option value="?id=2"&gt;Option 2&lt;/option&gt;
		&lt;option value="?id=3"&gt;Option 3&lt;/option&gt;
	&lt;/select&gt;
&lt;/form&gt;</pre>
<p>Using these two snippets together will render you a nice HTML drop-down box that upon selection takes you to a new URL very useful when filtering results in a sorting list for example.</p>
<p><a href="http://www.xldstudios.com/javascript-snippet-go-to-site-selected-in-drop-down-menu/">Javascript Snippet: Go to Site Selected in Drop-down Menu</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/javascript-snippet-go-to-site-selected-in-drop-down-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guest Appearance on the Adobe Creative Suite Podcast</title>
		<link>http://www.xldstudios.com/guest-appearance-on-the-adobe-creative-suite-podcast/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=guest-appearance-on-the-adobe-creative-suite-podcast</link>
		<comments>http://www.xldstudios.com/guest-appearance-on-the-adobe-creative-suite-podcast/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 06:00:37 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Creative Suite]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Guest]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=606</guid>
		<description><![CDATA[<p>A heads up today that I made a guest appearance on the latest episode of the Adobe Creative Suite Podcast, showing you how to make a seamless background pattern in Photoshop CS5. If you have the podcast&#8217;s app, you will also get access to my special bonus tip showing how to implement that pattern on ...</p><p><a href="http://www.xldstudios.com/guest-appearance-on-the-adobe-creative-suite-podcast/">Guest Appearance on the Adobe Creative Suite Podcast</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>A heads up today that I made a guest appearance on the latest episode of the <a href="http://www.creativesuitepodcast.com/">Adobe Creative Suite Podcast</a>, showing you how to make a seamless background pattern in Photoshop CS5. If you have the podcast&#8217;s app, you will also get access to my special bonus tip showing how to implement that pattern on a website in Dreamweaver.</p>
<p><strong><a href="http://creativesuitepodcast.com/how-to-create-a-seamless-background-in-photoshop-cs5">Watch the episode »</a></strong></p>
<p><a href="http://www.xldstudios.com/guest-appearance-on-the-adobe-creative-suite-podcast/">Guest Appearance on the Adobe Creative Suite Podcast</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/guest-appearance-on-the-adobe-creative-suite-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 WordPress Plugins Every Site Should Have</title>
		<link>http://www.xldstudios.com/5-wordpress-plugins-every-site-should-have/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=5-wordpress-plugins-every-site-should-have</link>
		<comments>http://www.xldstudios.com/5-wordpress-plugins-every-site-should-have/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 06:00:58 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[Automattic]]></category>
		<category><![CDATA[Cache]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Gravity Forms]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[W3 Total Cache]]></category>
		<category><![CDATA[Yoast]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=594</guid>
		<description><![CDATA[<p>Whenever I set up a WordPress site for a client, I go through a number of plugins that really should be installed on every WordPress site. The ones I list here are my top choices that enhance functionality and add new necessary general functionality to WordPress. Let&#8217;s get started with the list which is in ...</p><p><a href="http://www.xldstudios.com/5-wordpress-plugins-every-site-should-have/">5 WordPress Plugins Every Site Should Have</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Whenever I set up a WordPress site for a client, I go through a number of plugins that really should be installed on every WordPress site. The ones I list here are my top choices that enhance functionality and add new necessary general functionality to WordPress. Let&#8217;s get started with the list which is in no particular order.</p>
<p><span id="more-594"></span>
<div class="one_third"><img width="200" height="200"alt="" src="http://www.xldstudios.com/wp-content/themes/xldv6/includes/timthumb.php?src=/wp-content/uploads/2011/10/gravity-forms.jpg&amp;h=200&amp;w=200&amp;zc=1&#038;q=100" /></div>
<div class="two_third last">
<h2><a href="http://www.gravityforms.com/">Gravity Forms</a></h2>
<p>I have tried a number of free contact form plugins but none is as good and advanced as Gravity Forms. You cannot only create the simple contact us forms but create advanced multi-page forms with conditional logic enabled. You can also create order forms with pricing fields and options that integrate with PayPal. Additionally, the forms can insert data direct to a number of mailing list services as well as Freshbooks. Gravity Forms is available from $39.</p></div>
<div class="clearboth"></div>
<div class="one_third"><img width="200" height="200"alt="" src="http://www.xldstudios.com/wp-content/themes/xldv6/includes/timthumb.php?src=/wp-content/uploads/2011/10/akismet.jpg&amp;h=200&amp;w=200&amp;zc=1&#038;q=100" /></div>
<div class="two_third last">
<h2><a href="http://akismet.com/">Akismet</a></h2>
<p>The Akismet plugin comes with WordPress but it is deactivated by default. Please, activate it. All it requires to set up is obtaining an API key from the akismet website. It is free for personal use and costs just a little bit for businesses. Seriously, this will get rid of most of the spam your blog will ever get hit by.</p></div>
<div class="clearboth"></div>
<div class="one_third"><img width="200" height="200"alt="" src="http://www.xldstudios.com/wp-content/themes/xldv6/includes/timthumb.php?src=/wp-content/uploads/2011/10/yoast.jpg&amp;h=200&amp;w=200&amp;zc=1&#038;q=100" /></div>
<div class="two_third last">
<h2><a href="http://yoast.com/wordpress/seo/">WordPress SEO by Yoast</a></h2>
<p>The WordPress SEO plugin is one of the most advanced ones that I have found. While I have enjoyed using both All in One SEO and SEO Ultimate, I like this one the most because its easy configurability and ease of use for each post. Each site that I have installed this on has done well in SEO in terms of posts.</p>
<p>Additional features include breadcrumbs, robots.txt, head section cleanup, RSS enhancements, XML sitemaps and a lot more. Basically, it has what you need to set up a good SEO structure on your site.</p></div>
<div class="clearboth"></div>
<div class="one_third"><img width="200" height="200"alt="" src="http://www.xldstudios.com/wp-content/themes/xldv6/includes/timthumb.php?src=/wp-content/uploads/2011/10/w3totalcache.jpg&amp;h=200&amp;w=200&amp;zc=1&#038;q=100" /></div>
<div class="two_third last">
<h2><a href="http://www.w3-edge.com/wordpress-plugins/w3-total-cache/">W3 Total Cache</a></h2>
<p>Once again, having gone through a series of different caching plugins I have found my top one. W3 Total Cache comes with advanced configuration options, allowing you to not only enable different caching methods but serving content through a Content Delivery Network (CDN) and minifying CSS, HTML and JavaScript. All of these options really do speed up your site immensely and so this makes it just a must-have plugin for your site.</p></div>
<div class="clearboth"></div>
<div class="one_third"><img width="200" height="200"alt="" src="http://www.xldstudios.com/wp-content/themes/xldv6/includes/timthumb.php?src=/wp-content/uploads/2011/10/yoast.jpg&amp;h=200&amp;w=200&amp;zc=1&#038;q=100" /></div>
<div class="two_third last">
<h2><a href="http://yoast.com/wordpress/google-analytics/">Google Analytics for WordPress</a></h2>
<p>Indeed you can just copy the tracking code into your theme but by using this plugin (which is well supported and coded) you get some additional options with custom variables that are tougher to set up in your normal tracking code. Basically the plugin gives you extra tracking options that are useful to be able to follow up on. What I find useful is the easy integration with the WP e-Commerce and Shopp plugins for tracking e-commerce sales in Google Analytics which is very useful.</p></div>
<div class="clearboth"></div>
<p>&nbsp;</p>
<p><a href="http://www.xldstudios.com/5-wordpress-plugins-every-site-should-have/">5 WordPress Plugins Every Site Should Have</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/5-wordpress-plugins-every-site-should-have/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our Free Basics of Using WordPress Webinar Now Available OnDemand</title>
		<link>http://www.xldstudios.com/our-free-basics-of-using-wordpress-webinar-now-available-ondemand/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=our-free-basics-of-using-wordpress-webinar-now-available-ondemand</link>
		<comments>http://www.xldstudios.com/our-free-basics-of-using-wordpress-webinar-now-available-ondemand/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 06:00:36 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Webinar]]></category>
		<category><![CDATA[Basics of Using WordPress]]></category>
		<category><![CDATA[Bernskiold Media]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=586</guid>
		<description><![CDATA[<p>The OnDemand version of our free Basics of Using WordPress webinar from a few weeks ago is now available to watch OnDemand and online over on Bernskiold Media. During the hour-long webinar we cover how to use the WordPress dashboard, working with posts, pages, links and media. While it is free to watch it online ...</p><p><a href="http://www.xldstudios.com/our-free-basics-of-using-wordpress-webinar-now-available-ondemand/">Our Free Basics of Using WordPress Webinar Now Available OnDemand</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>The OnDemand version of our free <strong><a href="http://www.bernskioldmedia.com/webinars/basics-of-using-wordpress/nar-now-available-ondemand/">Basics of Using WordPress webinar</a></strong> from a few weeks ago is now available to <a href="http://www.bernskioldmedia.com/webinars/basics-of-using-wordpress/">watch OnDemand</a> and online over on Bernskiold Media. During the hour-long webinar we cover how to use the WordPress dashboard, working with posts, pages, links and media.</p>
<p>While it is free to watch it online (as many times as you want) you can <strong><a href="http://www.bernskioldmedia.com/shop/basics-of-using-wordpress-download/">purchase a downloadable version</a></strong> for just $14.95 (special introductory price) that you can store locally and watch wherever you are, on any device that you have.</p>
<p><a href="http://www.xldstudios.com/our-free-basics-of-using-wordpress-webinar-now-available-ondemand/">Our Free Basics of Using WordPress Webinar Now Available OnDemand</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/our-free-basics-of-using-wordpress-webinar-now-available-ondemand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Button Generator Saves Time</title>
		<link>http://www.xldstudios.com/css-button-generator-saves-time/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=css-button-generator-saves-time</link>
		<comments>http://www.xldstudios.com/css-button-generator-saves-time/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 07:47:44 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Button Generator]]></category>
		<category><![CDATA[Button Template]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Button]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Template]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=576</guid>
		<description><![CDATA[<p>Good-looking buttons are a vital part of your website as it can raise a mediocre website to a really good one. I prefer being able to have my buttons all in CSS now that it is becoming a viable option, saving having to load extra images when not necessary. It is however very time consuming ...</p><p><a href="http://www.xldstudios.com/css-button-generator-saves-time/">CSS Button Generator Saves Time</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Good-looking buttons are a vital part of your website as it can raise a mediocre website to a really good one. I prefer being able to have my buttons all in CSS now that it is becoming a viable option, saving having to load extra images when not necessary. It is however very time consuming to write the code for a CSS button with gradients and everything.</p>
<p>Well, <a href="http://www.cssbutton.me/">CSS Button</a> is a free beta service that lets you choose from a pre-defined template or start from scratch to create/modify a button. It is much quicker than having to do it manually. Plus, the pre-defined templates are pretty nice and offers a good start for a lot of button needs.</p>
<p><a href="http://www.xldstudios.com/css-button-generator-saves-time/">CSS Button Generator Saves Time</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/css-button-generator-saves-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helpful Site: .htaccess Redirect Generator</title>
		<link>http://www.xldstudios.com/helpful-site-htaccess-redirect-generator/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=helpful-site-htaccess-redirect-generator</link>
		<comments>http://www.xldstudios.com/helpful-site-htaccess-redirect-generator/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 06:00:59 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[Helpful Site]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Website Tip]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=551</guid>
		<description><![CDATA[<p>Unless you work every day with servers and configuring Apache, chances are that you might want to look up the syntax for the different .htaccess rules that you may need occasionally. Here is a site that will help you do this. The free .htaccess redirect generator lets you generate the code for your .htaccess file ...</p><p><a href="http://www.xldstudios.com/helpful-site-htaccess-redirect-generator/">Helpful Site: .htaccess Redirect Generator</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Unless you work every day with servers and configuring Apache, chances are that you might want to look up the syntax for the different .htaccess rules that you may need occasionally. Here is a site that will help you do this.</p>
<p>The <strong><a href="http://www.htaccessredirect.net/index.php">free .htaccess redirect generator</a></strong> lets you generate the code for your .htaccess file based on a number of different settings. It is then easy to duplicate and create more rules should you need to. In short, it just helps you get the job done quicker.</p>
<p><a href="http://www.xldstudios.com/helpful-site-htaccess-redirect-generator/">Helpful Site: .htaccess Redirect Generator</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/helpful-site-htaccess-redirect-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 New and Exciting Features in WordPress 3.3</title>
		<link>http://www.xldstudios.com/4-new-and-exciting-features-in-wordpress-3-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=4-new-and-exciting-features-in-wordpress-3-3</link>
		<comments>http://www.xldstudios.com/4-new-and-exciting-features-in-wordpress-3-3/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 06:00:01 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Admin Bar]]></category>
		<category><![CDATA[Admin Pointers]]></category>
		<category><![CDATA[Changes]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[File Upload]]></category>
		<category><![CDATA[Image Upload]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[Media Library]]></category>
		<category><![CDATA[Media Upload]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Plupload]]></category>
		<category><![CDATA[Pointers]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[WordPress 3.3]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=537</guid>
		<description><![CDATA[<p>I&#8217;m a big WordPress fan and here at XLD Studios we use WordPress for all projects where it is appropriate (which is a lot). Of course I am excited to play around with new versions of WordPress to see if they manage to improve the experience and take more steps towards a more robust CMS. ...</p><p><a href="http://www.xldstudios.com/4-new-and-exciting-features-in-wordpress-3-3/">4 New and Exciting Features in WordPress 3.3</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big WordPress fan and here at XLD Studios we use WordPress for all projects where it is appropriate (which is a lot). Of course I am excited to play around with new versions of WordPress to see if they manage to improve the experience and take more steps towards a more robust CMS.</p>
<p>So, today I wanted to share a few of the new really cool things that have been added to WordPress 3.3 that is coming out soon.<br />
<span id="more-537"></span></p>
<div id="attachment_538" class="wp-caption aligncenter" style="width: 583px"><img class="size-full wp-image-538" title="WordPress 3.3: Interface" src="http://www.xldstudios.com/wp-content/uploads/2011/09/wp33-interface.png" alt="WordPress 3.3: Interface" width="573" height="332" />
<p class="wp-caption-text">Interface Tweaks in WordPress 3.3</p>
</div>
<p>&nbsp;</p>
<h2>Interface Tweaks</h2>
<p>Added in WordPress 3.3 is a bunch of smaller, but powerful interface tweaks. The admin bar has lost its gradient which I think is a nice tweak. It has also been cleaned up and offers in general a bit more value in both the site view and in the dashboard. It&#8217;s just nice.</p>
<p>What&#8217;s perhaps the best interface tweak from a productivity standpoint is the fly-up menus. When you hover over a collapsed sidebar menu, you get a menu right away. Instead of having to click and expand the menu (keeping it there), you can quickly access sub-menu items that you may only want once and don&#8217;t want to expand the menu permanently for. Brilliant time saver.</p>
<p>Additionally, the main dashboard theme and layout is being changed to an adaptive one that means it will be more usable on small devices and screen resolutions as its layout will change depending on device, both in terms of functionality and design.</p>
<div id="attachment_539" class="wp-caption aligncenter" style="width: 675px"><img class="size-full wp-image-539" title="WordPress 3.3: Drag-And-Drop File Uploader" src="http://www.xldstudios.com/wp-content/uploads/2011/09/wp33-uploading.png" alt="WordPress 3.3: Drag-And-Drop File Uploader" width="665" height="421" />
<p class="wp-caption-text">The New Drag-And-Drop File Uploader in WordPress 3.3</p>
</div>
<p>&nbsp;</p>
<h2>Drag-And-Drop File Upload</h2>
<p>The media uploader has been pretty much the same through many WordPress versions now and I&#8217;m happy that they have decided to give it some love because frankly, it is one of the few parts of the post creation process that isn&#8217;t too well liked by many of our clients.</p>
<p>Once again it is a time saver thing. Instead of having to select files from a browser upload window, you can simply drag-and-drop them into an area on the screen and WordPress will upload them right away. Neat and effective.</p>
<p>Another benefit to the uploading process is better handling of scaling images as they have integrated <a href="http://www.plupload.com/">Plupload</a> into WordPress for the uploading process overall, which is what brings you all sorts of goodies.</p>
<div id="attachment_540" class="wp-caption aligncenter" style="width: 421px"><img class="size-full wp-image-540" title="WordPress 3.3: Admin Pointers" src="http://www.xldstudios.com/wp-content/uploads/2011/09/wp33-pointers.png" alt="WordPress 3.3: Admin Pointers" width="411" height="177" />
<p class="wp-caption-text">The New Admin Pointers in WordPress 3.3</p>
</div>
<p>&nbsp;</p>
<h2>Pointers To Help You Get Around</h2>
<p>One of the most helpful new features as a theme designer and developer is to see a new pointers feature. This gives developers the ability to guide users around a theme (or WordPress itself) the first time you activate the theme. It is very exciting to think what we are able to do for new clients by integrating a walkthrough at their own pace right in WordPress.</p>
<p>It is probably even more helpful when looking at themes that are being released where users can be given a quick walkthrough when activating, saving the developer some support questions about usage.</p>
<h2>Performance Enhancements</h2>
<p>As with every new version, there are a bunch of performance enhancements to help WordPress run faster. This is as usual very much appreciated as a CMS unfortunately does load much lower than pure HTML equivalents (nothing weird about that). Every bit of enhancement that can be made towards better performance is a welcome one.</p>
<h2>Conclusion</h2>
<p>It is good to see that the WordPress developers are implementing some really useful features into this release. In fact, I can&#8217;t wait to be able to roll the new WordPress version out on several of our clients&#8217; pages as well as implement the new admin pointers for new themes to help users get to learn how to use it.</p>
<p>Currently there is no scheduled date for when WordPress 3.3 is coming out, but my guess is that we will see it in a couple of months as it is currently still in nightly build versions, changing pretty rapidly.</p>
<p><a href="http://www.xldstudios.com/4-new-and-exciting-features-in-wordpress-3-3/">4 New and Exciting Features in WordPress 3.3</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/4-new-and-exciting-features-in-wordpress-3-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Resource: Facebook Fan Page GUI PSD</title>
		<link>http://www.xldstudios.com/design-resource-facebook-fan-page-gui-psd/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=design-resource-facebook-fan-page-gui-psd</link>
		<comments>http://www.xldstudios.com/design-resource-facebook-fan-page-gui-psd/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 06:02:32 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Fan Page GUI PSD]]></category>
		<category><![CDATA[Page Design]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=465</guid>
		<description><![CDATA[<p>I found this last week over on Smashing Magazine. They have a freebie design resource called the Facebook Fan Page GUI PSD. Basically, it is a layered Photoshop document containing all the Facebook user interface elements that makes it easy for you to design graphics for either Facebook walls or tabs. What makes this helpful ...</p><p><a href="http://www.xldstudios.com/design-resource-facebook-fan-page-gui-psd/">Design Resource: Facebook Fan Page GUI PSD</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I found this last week over on <a href="http://www.smashingmagazine.com/">Smashing Magazine</a>. They have a freebie design resource called the <a href="http://www.smashingmagazine.com/2011/09/13/freebie-facebook-fan-page-gui-psd/">Facebook Fan Page GUI PSD</a>. Basically, it is a layered Photoshop document containing all the Facebook user interface elements that makes it easy for you to design graphics for either Facebook walls or tabs.</p>
<p>What makes this helpful is that you get to design your graphic while seeing right away how it looks on Facebook&#8217;s design. What&#8217;s more, they are promising that with every change to the Facebook UI, this file will be reproduced 24 hours later.</p>
<p><a href="http://www.xldstudios.com/design-resource-facebook-fan-page-gui-psd/">Design Resource: Facebook Fan Page GUI PSD</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/design-resource-facebook-fan-page-gui-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How-to: Manually Select Posts on Frontpage Using Sticky Posts</title>
		<link>http://www.xldstudios.com/how-to-manually-select-posts-on-frontpage-using-sticky-posts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-manually-select-posts-on-frontpage-using-sticky-posts</link>
		<comments>http://www.xldstudios.com/how-to-manually-select-posts-on-frontpage-using-sticky-posts/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 06:00:33 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Sticky Posts]]></category>
		<category><![CDATA[Template]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Tweak]]></category>
		<category><![CDATA[WP_Query]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=457</guid>
		<description><![CDATA[<p>Quite often companies would like their front page to display blog items but only the ones they specifically choose. There are a few different ways to go about doing this in WordPress which I will touch on first, however one of the best ways is to ask them to make the posts sticky and create ...</p><p><a href="http://www.xldstudios.com/how-to-manually-select-posts-on-frontpage-using-sticky-posts/">How-to: Manually Select Posts on Frontpage Using Sticky Posts</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Quite often companies would like their front page to display blog items but only the ones they specifically choose. There are a few different ways to go about doing this in WordPress which I will touch on first, however one of the best ways is to ask them to make the posts sticky and create a special template for the front page that only shows sticky posts and then another template for the blog that ignores the sticky status.</p>
<p><span id="more-457"></span></p>
<h2>A Few Other Solutions and Why I&#8217;m Not a Fan</h2>
<p>The key to achieving the desired result is basically to single out the posts that need to be on the front page in such a way that they can be filtered in a page template. Perhaps the first way of doing this people think of is categories and tags.</p>
<p>Using a special &#8220;frontpage&#8221; tag works perfectly until someone inadvertently tags a post about the old Microsoft Frontpage application with &#8220;frontpage&#8221; and it shows up on the frontpage. While the example may seem far fetched, the risk for inadvertent tagging is obvious.</p>
<p>Getting around this by using a dedicated category is a more secure way but draws attention to the other negative aspect of both these methods: It shows for the user. As a general rule, I like tweaks like this to be invisible to the end site user which rules out using both categories and tags.</p>
<h2>The Solution: Sticky Posts!</h2>
<p>Let&#8217;s get on with the solution that actually works fine and is logical to most webmasters. The idea is the following:</p>
<ul>
<li>Whenever a post should appear on the frontpage, mark it as sticky.</li>
</ul>
<p>However, this brings an interesting problem to the blog listing. Because the sticky posts will appear at the top of the blog listing the solution to the first problem will create a second one. Don&#8217;t worry, WordPress has a function you can pass to the query to solve this. Let&#8217;s get started.</p>
<h3>Frontpage Template</h3>
<p>The code that I use for the front page template is basically a standard WordPress loop, making sure to include the template naming comment at the top.</p>
<p>What is a little bit special is that I create a new custom query using the WP_Query function, passing the post__in option and having that equal posts that are sticky. This is done through the following bit of code: &#8216;post__in&#8217; =&gt; get_option(&#8216;sticky_posts&#8217;);</p>
<p>Note that the have_posts() etc. functions change to have $query in front instead of $this.</p>
<pre escaped="true" lang="php" line="1">&lt;?php /*
Template Name: Frontpage
*/ ?&gt;
&lt;?php get_header(); ?&gt;

		&lt;?php $query = new WP_Query(array( // Creating a custom Query
			'post__in'  =&gt; get_option( 'sticky_posts' ) // Only including posts that are sticky
		)); ?&gt;

		&lt;?php if($query-&gt;have_posts()) : ?&gt;&lt;?php while($query-&gt;have_posts()) : $query-&gt;the_post(); ?&gt;

			&lt;?php get_template_part('content',get_post_format()); ?&gt;

		&lt;?php endwhile; ?&gt;

		&lt;?php else : ?&gt;

			&lt;h1&gt;No Content Could Be Found&lt;/h1&gt;

			&lt;p&gt;No content could be found for your query.&lt;/p&gt;

		&lt;?php endif; ?&gt;

	&lt;?php get_sidebar(); ?&gt;

&lt;?php get_footer(); ?&gt;</pre>
<p>You can use the code here yourself if you like, however the best is to modify your own template so that you don&#8217;t miss out on any special tags or features.</p>
<h3>Template For Blog Page</h3>
<p>For the blog page, you don&#8217;t need to be working on a special page template as WordPress will automatically use the index.php file if applicable. In the code example below I am only including the start of the loop:</p>
<pre escaped="true" lang="php" line="1">&lt;?php $query = new WP_Query(array(
					'ignore_sticky_posts' =&gt; 1
				)); ?&gt;

				&lt;?php if($query-&gt;have_posts()) : ?&gt;&lt;?php while($query-&gt;have_posts()) : $query-&gt;the_post(); ?&gt;</pre>
<p>For the index page, I choose to go the same route by creating another custom query. The importance is that you pass the option <em>&#8216;ignore_sticky_posts&#8217; =&gt; 1</em> to the query. With this enabled (set to 1), all sticky posts will appear sorted by post dates and have their stickiness ignored on the blog page.</p>
<h2>Conclusion</h2>
<p>This is my favorite way of doing this even though it has one major flaw of itself. If the blog in question plans to also utilize the sticky posts feature, you would have to go with one of the other workarounds for this such as setting a custom field value and checking for that on the front page.</p>
<p><a href="http://www.xldstudios.com/how-to-manually-select-posts-on-frontpage-using-sticky-posts/">How-to: Manually Select Posts on Frontpage Using Sticky Posts</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/how-to-manually-select-posts-on-frontpage-using-sticky-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BuddyPress 1.5 Is Available—Major Integration Improvements!</title>
		<link>http://www.xldstudios.com/buddypress-1-5-is-available%e2%80%94major-integration-improvements/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=buddypress-1-5-is-available%25e2%2580%2594major-integration-improvements</link>
		<comments>http://www.xldstudios.com/buddypress-1-5-is-available%e2%80%94major-integration-improvements/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 09:49:34 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[BuddyPress]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Repository]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Version]]></category>
		<category><![CDATA[WordPress Plugin]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=449</guid>
		<description><![CDATA[<p>The BuddyPress team has released the latest version of BuddyPress, version 1.5, adding considerable improvements especially in the integration part. If you don&#8217;t know about BuddyPress, it is a major social plugin for WordPress, allowing you to use the user system in the front end of the website, complete with groups, forums and profiles. New ...</p><p><a href="http://www.xldstudios.com/buddypress-1-5-is-available%e2%80%94major-integration-improvements/">BuddyPress 1.5 Is Available—Major Integration Improvements!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.xldstudios.com/wp-content/uploads/2011/09/buddypress.png"><img class="aligncenter size-full wp-image-450" title="buddypress" src="http://www.xldstudios.com/wp-content/uploads/2011/09/buddypress.png" alt="" width="505" height="95" /></a></p>
<p>The BuddyPress team has released the latest version of <a href="http://buddypress.org/">BuddyPress</a>, version 1.5, adding considerable improvements especially in the integration part. If you don&#8217;t know about BuddyPress, it is a major social plugin for <a href="http://www.xldstudios.com/tag/wordpress/">WordPress</a>, allowing you to use the user system in the front end of the website, complete with groups, forums and profiles.</p>
<p>New in 1.5 is apart from the usual ton of bug fixes and minor enhancement are a few more major features. First of all, they have reworked the default theme to behave and look better. Additionally, the integration with <a href="http://www.xldstudios.com/tag/wordpress/">WordPress</a> core is much tighter. BuddyPress now has support for the built in menu system and the admin bar.</p>
<p>Other news are a brand-new installation and update wizard as well as improved profile field management.</p>
<p>BuddyPress is freely available through the <a href="http://wordpress.org/extend/plugins/buddypress/">WordPress repository</a> (you can install it from your dashboard like any other plugin). They also have their <a href="http://buddypress.org/">own plugin website</a> with support and a community which provides both help and plugins for BuddyPress itself.</p>
<p><a href="http://www.xldstudios.com/buddypress-1-5-is-available%e2%80%94major-integration-improvements/">BuddyPress 1.5 Is Available—Major Integration Improvements!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/buddypress-1-5-is-available%e2%80%94major-integration-improvements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orbit: A Simple and Slick jQuery Slider</title>
		<link>http://www.xldstudios.com/orbit-a-simple-and-slick-jquery-slider/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=orbit-a-simple-and-slick-jquery-slider</link>
		<comments>http://www.xldstudios.com/orbit-a-simple-and-slick-jquery-slider/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 06:00:03 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Assets]]></category>
		<category><![CDATA[Image Slider]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Slider]]></category>
		<category><![CDATA[Web Asset]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=440</guid>
		<description><![CDATA[<p>It feels like I am constantly wading through image slider plugins in search of the most versatile one for me. This time I feel like I have gotten closer to being able to stick with one. Orbit is a neat jQuery plugin that out of the box looks great on your page and uses a ...</p><p><a href="http://www.xldstudios.com/orbit-a-simple-and-slick-jquery-slider/">Orbit: A Simple and Slick jQuery Slider</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p><img width="650" alt="Orbit jQuery Slider" src="http://www.xldstudios.com/wp-content/themes/xldv6/includes/timthumb.php?src=/wp-content/uploads/2011/09/orbit-slider.jpg&amp;w=650&amp;zc=1" /></p>
<p>It feels like I am constantly wading through image slider plugins in search of the most versatile one for me. This time I feel like I have gotten closer to being able to stick with one. <a href="http://www.zurb.com/playground/orbit-jquery-image-slider">Orbit</a> is a neat jQuery plugin that out of the box looks great on your page and uses a very simple markup.</p>
<p>After including the orbit files in the header of your page, all you need is a very simple markup that actually goes very well with the markup you might already have written prior to implementing the slider. Since Orbit is coded in a way that it determines the width and height of your images automatically you don&#8217;t need to add any special CSS to your stylesheet (other than including the orbit css).</p>
<p>What I like the most about Orbit so far is that it is simple and doesn&#8217;t interfere. I normally write my code first and include the slider later and I hate having to go in and add the necessary slider container CSS myself. With orbit, I don&#8217;t need to worry about that as the plugin will do that for me.</p>
<p>You can go and <a href="http://www.zurb.com/playground/orbit-jquery-image-slider">check out Orbit over on its project website</a> where you&#8217;ll also find all documentation and instructions.</p>
<p><a href="http://www.xldstudios.com/orbit-a-simple-and-slick-jquery-slider/">Orbit: A Simple and Slick jQuery Slider</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/orbit-a-simple-and-slick-jquery-slider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Basics of Using WordPress Webinar on September 14th</title>
		<link>http://www.xldstudios.com/free-basics-of-using-wordpress-webinar-on-september-14th/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=free-basics-of-using-wordpress-webinar-on-september-14th</link>
		<comments>http://www.xldstudios.com/free-basics-of-using-wordpress-webinar-on-september-14th/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 06:00:51 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Webinar]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Basics]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Pages]]></category>
		<category><![CDATA[Posts]]></category>
		<category><![CDATA[WordPress Webinar]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=353</guid>
		<description><![CDATA[<p>Together with our parent company, Bernskiold Media, we are hosting a free WordPress webinar aimed at WordPress beginners on September 14th. The webinar is perfect for you who do not wish to learn how to set up WordPress but just need to use it with a site that is already set up for you. In ...</p><p><a href="http://www.xldstudios.com/free-basics-of-using-wordpress-webinar-on-september-14th/">Free Basics of Using WordPress Webinar on September 14th</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Together with our parent company, Bernskiold Media, we are hosting a <strong><em>free</em></strong> WordPress webinar aimed at WordPress beginners on September 14th. The webinar is perfect for you who do not wish to learn how to set up WordPress but just need to use it with a site that is already set up for you.</p>
<p>In this WordPress webinar will learn how categories, tags, posts, pages and media work and how you can add and manage them. Additionally, you will learn what some of the WordPress set up settings do and what happens when you change them.</p>
<p>It is free to register but as places are limited, we ask that you do <strong><a href="https://www3.gotomeeting.com/register/267887614">register in advance here</a></strong>.</p>
<p><a href="http://www.xldstudios.com/free-basics-of-using-wordpress-webinar-on-september-14th/">Free Basics of Using WordPress Webinar on September 14th</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/free-basics-of-using-wordpress-webinar-on-september-14th/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple WordPress Function That Prints Custom Field Value</title>
		<link>http://www.xldstudios.com/simple-wordpress-function-prints-custom-field/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=simple-wordpress-function-prints-custom-field</link>
		<comments>http://www.xldstudios.com/simple-wordpress-function-prints-custom-field/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 00:00:32 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Trick]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=319</guid>
		<description><![CDATA[<p>Here is a nice WordPress theme trick for you. Quite often, pages can be enhanced a lot by using custom fields attached to them and printing the custom fields out to build up complex page templates. They can also be used to hold settings for whether to show something or not, in which case they ...</p><p><a href="http://www.xldstudios.com/simple-wordpress-function-prints-custom-field/">Simple WordPress Function That Prints Custom Field Value</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Here is a nice WordPress theme trick for you. Quite often, pages can be enhanced a lot by using custom fields attached to them and printing the custom fields out to build up complex page templates. They can also be used to hold settings for whether to show something or not, in which case they need to be loaded and used in an if-statement. The standard code to get a custom field however, is quite long and contains just a few variable parts.</p>
<p>To make the including easier, I usually create a simple function and leave in my functions.php for projects when I need to include custom fields, either to print them out or use in an if-statement. In this article, I&#8217;d like to show you how that is done.</p>
<p><span id="more-319"></span></p>
<h3>First of all, the Standard Code</h3>
<p>Let&#8217;s start by having a look at the piece of code that is normally used to retrieve a custom field value from a WordPress template:</p>
<pre escaped="true" lang="php" line="0">&lt;?php $custom_field = get_post_meta($post-&gt;ID, 'custom-field-key', true); ?&gt;</pre>
<p>The second part of the code, the <code>get_post_meta();</code> function is what loads the value of the custom field. To make this easily used in an if-statement or to echo while being able to hide the, relatively long, function, I choose to save this to a variable.</p>
<h3>Making the Function</h3>
<p>Looking at the code above, there are only two things that will change each time you load a new custom field, the variable and the custom field key. By having the key also be the variable name it can easily be simplified to a function and then printed.</p>
<pre escaped="true">&lt;?php
function print_custom_field($custom_field) {
	global $post;
	$custom_field = get_post_meta($post-&gt;ID, $custom_field, true);
	echo $custom_field;
}
?&gt;</pre>
<p>This is just a basic PHP function, passing in the variable $custom_field for use anywhere in it. In order for it to pull the custom field from the correct post, you need to make sure to include the $post variable as a global. I choose here to name the variable after the key to keep it simple. You can name the function anything you want, as long as it doesn&#8217;t clash with the built in functions in WordPress.</p>
<p>Calling this function would be done like this:</p>
<pre escaped="true" lang="php" line="0">&lt;?php print_custom_field('author-information'); ?&gt;</pre>
<p>This would grab the information from the &#8220;author-information&#8221; custom field and print it where you call the function.</p>
<h3>Tweaking for Use in IF-clause</h3>
<p>Since the function above will as a final step, echo out the value of the field, it cannot be used in an if-clause. A slight tweak to the function however, will allow it to.</p>
<pre escaped="true">&lt;?php
function get_custom_field($custom_field) {
	global $post;
	$custom_field = get_post_meta($post-&gt;ID, $custom_field, true);
	return $custom_field;
}
?&gt;</pre>
<p>By simply removing the echo part and renaming the function, you can have one function to print a custom field and one to simple get it. The usage of this would be like this if you want to check whether the custom field is set to a specific value</p>
<pre escaped="true" lang="php" line="0">&lt;?php
if(get_custom_field('application') == "Photoshop") :
    echo "Do Stuff!";
else :
    echo "Do Other Stuff!";
endif;
?&gt;</pre>
<p>If you just want to check whether the custom field has a value or not, you can do like this:</p>
<pre escaped="true" lang="php" line="0">&lt;?php
if(get_custom_field('application')) :
    echo "YES!";
endif;
?&gt;</pre>
<h3>Conclusion</h3>
<p>This is perhaps a function that ought to be available in WordPress by default, but is easily created for quicker use in your theme files and is going to save a lot of lines of code and make your template cleaner.</p>
<p><a href="http://www.xldstudios.com/simple-wordpress-function-prints-custom-field/">Simple WordPress Function That Prints Custom Field Value</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/simple-wordpress-function-prints-custom-field/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>15 Examples of Gorgeous Pricing Table Designs</title>
		<link>http://www.xldstudios.com/15-examples-gorgeous-pricing-table-designs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=15-examples-gorgeous-pricing-table-designs</link>
		<comments>http://www.xldstudios.com/15-examples-gorgeous-pricing-table-designs/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 07:00:47 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[Pricing]]></category>
		<category><![CDATA[Pricing Table]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=288</guid>
		<description><![CDATA[<p>Any business that provides a tired product or service needs to present this well for their customers. Pricing tables are far from a simple outline of what each product tier offers, but a marketing tool to make customers choose the &#8220;right&#8221; package that makes you the most money. In this roundup, we take a look ...</p><p><a href="http://www.xldstudios.com/15-examples-gorgeous-pricing-table-designs/">15 Examples of Gorgeous Pricing Table Designs</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Any business that provides a tired product or service needs to present this well for their customers. Pricing tables are far from a simple outline of what each product tier offers, but a marketing tool to make customers choose the &#8220;right&#8221; package that makes you the most money.</p>
<p>In this roundup, we take a look at 15 pricing table designs that all look gorgeous and drill down to what the main features of the tables are before finishing up with a conclusion on the current popular trends in pricing tables and what you should consider doing when in charge of designing such a table.</p>
<p>You can use this post in two ways, either as a source of inspiration for your project, or to learn what techniques are out there or why not combine the two reasons?</p>
<p><span id="more-288"></span></p>
<h3><a href="http://bigcartel.com/signup">Big Cartel</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/bigcartel.png"><img class="size-medium wp-image-289 border aligncenter" title="Big Cartel" src="http://www.xldstudios.com/wp-content/uploads/2011/07/bigcartel-700x374.png" alt="Big Cartel" width="700" height="374" /></a>Over at Big Cartel, they have a pricing table that cleanly lays out what is included in each package with one feature per line. The table has a gradient from blue to green, indicating growth in the plans to the right. The use of black for the free plan and the subtly faded feature indicate that it is not as good as the paid plans, which Big Cartel wants to highlight to the customer.</p>
<h3 style="text-align: left;"><a href="https://www.crazyegg.com/pricing">Crazyegg</a></h3>
<p style="text-align: center;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/crazyegg.png"><img class="aligncenter size-medium wp-image-290 border" title="Crazyegg" src="http://www.xldstudios.com/wp-content/uploads/2011/07/crazyegg-700x483.png" alt="Crazyegg" width="700" height="483" /></a></p>
<p style="text-align: left;">Crazyegg have a reversed table, going from the most expensive plan to the cheapest in the normal left to right reading order. They are highlighting one of their plans by making its box slightly larger than the other, causing the eye to fall on it right away. With a slight outer glow, it draws attention to the featured plan while not taking over the design. Each feature has its own line, giving a clear comparison of each plan.</p>
<h3 style="text-align: left;">Dropbox</h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/dropbox.png"><img class="aligncenter size-full wp-image-291 border" title="Dropbox" src="http://www.xldstudios.com/wp-content/uploads/2011/07/dropbox.png" alt="Dropbox" width="649" height="378" /></a>Dropbox has a different approach. With a vertical table they highlight the three different plans available. Instead of putting emphasis on the different features, they highlight the plan name which indicate the space difference for each of the different plans. This makes for a very clean pricing table.</p>
<h3 style="text-align: left;"><a href="http://www.eleven2.com/">Eleven2</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/eleven2.png"><img class="aligncenter size-medium wp-image-292 border" title="Eleven2" src="http://www.xldstudios.com/wp-content/uploads/2011/07/eleven2-700x225.png" alt="Eleven2" width="700" height="225" /></a>To highlight the different web hosting solutions offered by Eleven2, they have decided on a table that shows the main features of each type of solution in a row that makes it easy to compare the three. By adding tags to the top of certain solutions, they manage to draw attention to it as something special.</p>
<h3 style="text-align: left;"><a href="http://floomapp.com/plans">Floom</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/floom.png"><img class="aligncenter size-medium wp-image-293" title="Floom" src="http://www.xldstudios.com/wp-content/uploads/2011/07/floom-700x315.png" alt="Floom" width="700" height="315" /></a>Floom also chooses to highlight their plans in the reverse order from most expensive to least expensive, with their target plan enlarged, making the eye fall immediately on it.</p>
<h3 style="text-align: left;"><a href="https://getquantify.com/plans_and_prices">Getquantify</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/getquantify.png"><img class="aligncenter size-medium wp-image-294 border" title="Getquantify" src="http://www.xldstudios.com/wp-content/uploads/2011/07/getquantify-700x480.png" alt="Getquantify" width="700" height="480" /></a>Doing the classic approach with least expensive to most expensive is Getquantify who choose to highlight their recommended plan with a lighter background and green corners. It doesn&#8217;t make it stand out quite as much as the enlarged examples however offers a very kind approach to upselling.</p>
<h3 style="text-align: left;"><a href="http://launchlist.net/sign-up">Launchlist Pro</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/launchlistpro.png"><img class="aligncenter size-medium wp-image-295 border" title="Launchlist Pro" src="http://www.xldstudios.com/wp-content/uploads/2011/07/launchlistpro-700x268.png" alt="Launchlist Pro" width="700" height="268" /></a>Launchlist Pro by default has two of their plans subdued and highlights their recommended one to you. When hovering over any other plan that one gets highlighted. When you draw the cursor away, it goes back to highlighting the featured plan. Doing it this way is another subtle way of selling a special product to the customer while still being effective.</p>
<h3 style="text-align: left;"><a href="http://www.lightcms.com/pricing">LightCMS</a></h3>
<p style="text-align: center;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/lightcms.png"><img class="aligncenter size-medium wp-image-296 border" title="Light CMS" src="http://www.xldstudios.com/wp-content/uploads/2011/07/lightcms-700x359.png" alt="Light CMS" width="700" height="359" /></a></p>
<p style="text-align: left;">At LightCMS they have chosen not to highlight a specific plan but instead present them each with a color from the spectrum/rainbow. By doing this, they naturally make the reader want to progress to the right and learn about the more advanced plans, focusing more on what they offer than their price per month.</p>
<h3 style="text-align: left;"><a href="http://mailchimp.com/pricing/">MailChimp</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/mailchimp.png"><img class="aligncenter size-medium wp-image-297 border" title="MailChimp" src="http://www.xldstudios.com/wp-content/uploads/2011/07/mailchimp-700x183.png" alt="MailChimp" width="700" height="183" /></a>Because of the nature of email list provider MailChimp, they have chosen to go with a basic table that clearly lays out the different tiers and how much they cost. Contrary to many other services, MailChimp focus on their free plan as a way to get new customers using their service hoping that their needs will grow beyond what the free plan offers.</p>
<h3 style="text-align: left;"><a href="http://onehub.com/products/workspaces/pricing">onehub</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/onehub.png"><img class="aligncenter size-medium wp-image-298 border" title="OneHub" src="http://www.xldstudios.com/wp-content/uploads/2011/07/onehub-700x443.png" alt="OneHub" width="700" height="443" /></a>onehub choses, like many others, to present their plans in the reverse order, starting with the most expensive one. To attract interest and focus the customer&#8217;s eye, they have chosen to put a light blue background on their featured plan which works well with their overall design.</p>
<h3 style="text-align: left;"><a href="http://www.pressjack.com/digital-magazine-pricing.html">PressJack</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/pressjack.png"><img class="aligncenter size-medium wp-image-299 border" title="PressJack" src="http://www.xldstudios.com/wp-content/uploads/2011/07/pressjack-700x405.png" alt="PressJack" width="700" height="405" /></a>PressJack makes use of two techniques here. First of all, the two non-featured plans are slightly subdued. Secondly, the main plan is not just fully opaque but also highlighted in a much lighter color, drawing your attention immediately to it.</p>
<h3 style="text-align: left;"><a href="http://www.shopify.com/">Shopify</a></h3>
<p style="text-align: center;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/shopify.png"><img class="aligncenter size-medium wp-image-300 border" title="Shopify" src="http://www.xldstudios.com/wp-content/uploads/2011/07/shopify-700x465.png" alt="Shopify" width="700" height="465" /></a></p>
<p style="text-align: left;">Shopify offers customers a standard pricing table with easily compared features along with a nicely colored green to blue gradient. They also make use of the plan highlight by subtly adding a drop-shadow to each side of the featured plan, making it rise above the rest in a surprisingly effective way.</p>
<h3 style="text-align: left;"><a href="http://www.squarespace.com/">Squarespace</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/squarespace.png"><img class="aligncenter size-medium wp-image-301 border" title="Squarespace" src="http://www.xldstudios.com/wp-content/uploads/2011/07/squarespace-700x538.png" alt="Squarespace" width="700" height="538" /></a>Squarespace has chosen to simply add a little banner at the top of their &#8220;Most Popular&#8221; plan to indicate that this is the one they want you to go with. To highlight the savings for multi-year contracts, they use a set of buttons above the table that interactively change the pricing and savings when you activate the view. Simple, clean and effective!</p>
<h3 style="text-align: left;"><a href="http://www.webpop.com/pricing">Webpop</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/webpop.png"><img class="aligncenter size-medium wp-image-302 border" title="Webpop" src="http://www.xldstudios.com/wp-content/uploads/2011/07/webpop-700x264.png" alt="Webpop" width="700" height="264" /></a>Webpop goes all in with their pricing table. Not only do they subdue the non-featured plans but the highlight their recommended plan with a banner, color and size. Perhaps it is on the more obtrusive side, but it is one way of designing your pricing table and it does indeed work.</p>
<h3 style="text-align: left;"><a href="http://www.zendesk.com/pricing">Zendesk</a></h3>
<p style="text-align: left;"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/zendesk.png"><img class="aligncenter size-full wp-image-303 border" title="ZenDesk" src="http://www.xldstudios.com/wp-content/uploads/2011/07/zendesk.png" alt="ZenDesk" width="626" height="365" /></a>Zendesk, as a final example, has a very elegant display of their plans, using both size and a clever drop-shadow to highlight their most expensive and recommended package, making the rest seem smaller in comparison. By using a splash of color and more text, it makes it seem like the plus package offers much more than the other.</p>
<h3 style="text-align: left;">Conclusion</h3>
<p style="text-align: left;">There are many ways of successfully designing a pricing table. The most important factor is however how the customer perceives the tables. When designing these tables, try these different techniques to see which best suits the particular website in its overall design. Don&#8217;t be afraid to ask around and do a little survey on what potential customers feel about the different presentations. The last thing you need is a table that invokes irritation with customers.</p>
<p><a href="http://www.xldstudios.com/15-examples-gorgeous-pricing-table-designs/">15 Examples of Gorgeous Pricing Table Designs</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/15-examples-gorgeous-pricing-table-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review: Automatically Tweet Your WordPress Posts with WordTwit Pro</title>
		<link>http://www.xldstudios.com/automatically-tweet-wordtwit/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=automatically-tweet-wordtwit</link>
		<comments>http://www.xldstudios.com/automatically-tweet-wordtwit/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 08:00:15 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Automated]]></category>
		<category><![CDATA[Automatically]]></category>
		<category><![CDATA[Schedule]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[WordTwit]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=273</guid>
		<description><![CDATA[<p>There are quite a few plugins available for WordPress that will tweet out new WordPress posts automatically when they are posted. By having your posts automatically tweeted you have one less thing to worry about in the day. Even though there are auto-tweet plugins aplenty, none that I have found is quite as extensive as ...</p><p><a href="http://www.xldstudios.com/automatically-tweet-wordtwit/">Review: Automatically Tweet Your WordPress Posts with WordTwit Pro</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>There are quite a few plugins available for WordPress that will tweet out new WordPress posts automatically when they are posted. By having your posts automatically tweeted you have one less thing to worry about in the day.</p>
<p>Even though there are auto-tweet plugins aplenty, none that I have found is quite as extensive as <a href="http://www.bravenewcode.com/store/plugins/wordtwit-pro/">WordTwit Pro</a>. This plugin gives you pretty much what you need to share your links more effectively and saving you more time.</p>
<h3>Scheduling Multiple Updates</h3>
<p>WordTwit Pro will offer you the option of tweeting your post to the world multiple times of the day. You can choose, on a post-per-post basis, how many times you want it to be tweeted out and, if more than one, how long time that should pass in-between. You can also have your tweets delayed from the start.</p>
<p>It would be thoroughly useful if WordTwit Pro allowed you to set a default setting for this in its settings. Currently, you can only set this per post, which is slightly more time consuming than ideal when you usually use the same time settings for posts.</p>
<div id="attachment_275" class="wp-caption aligncenter" style="width: 710px"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/wordtwitpro-multiple-accounts.png"><img class="size-medium wp-image-275 " title="WordTwit Pro: Multiple Accounts" src="http://www.xldstudios.com/wp-content/uploads/2011/07/wordtwitpro-multiple-accounts-700x190.png" alt="Post to Multiple Accounts with WordTwit Pro" width="700" height="190" /></a>
<p class="wp-caption-text">Post to Multiple Accounts with WordTwit Pro</p>
</div>
<h3>Tweet to Multiple Accounts</h3>
<p>While many freely available plugins allow you to tweet to one account, fewer allow you to set-up more than one account to tweet to. By default, all accounts are selected for each post but this can be customized per post in the WordTwit box.</p>
<p>Even though I typically publish to all accounts that I select, I could see a setting similar to what should be there fore multiple updates. This would be a setting that allowed you to change which accounts it tweets to by default. Maybe there is an account you only occasionally use?</p>
<div id="attachment_276" class="wp-caption alignright" style="width: 306px"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/wordtwitpro-panel.png"><img class="size-full wp-image-276" title="WordTwit Pro: Tweet Panel" src="http://www.xldstudios.com/wp-content/uploads/2011/07/wordtwitpro-panel.png" alt="Tweet Controls for a Post" width="296" height="467" /></a>
<p class="wp-caption-text">Tweet Controls for a Post</p>
</div>
<h3>Hashtagging, Tweeting and Short URLs</h3>
<p>As you would expect any auto-tweeting plugin to do, WordTwit Pro manages hashtags easily and will of course allow you to customize the tweet for each post.</p>
<p>The plugin has settings that lets you add tracking links for Google Analytics, as well as choose a URL shortening service of your choice and also use the APIs of these service providers. This means that if you have a custom URL set up with bit.ly, WordTwit pro would use this in your tweets.</p>
<h3>Conclusion</h3>
<p><a href="http://www.bravenewcode.com/store/plugins/wordtwit-pro/">WordTwit Pro</a> is a paid WordPress plugin but at $39 for a single site license, it is very fairly priced. If you are a developer, you may get a 5 site license for $69 or opt directly for a Pro Unlimited version at $99 that gives you installation rights on an unlimited number of sites, including WP MU installations. There is a free version available which provides a much limited feature-set.</p>
<p>If you need to be able to tweet to multiple accounts or want the added comfort of being able to tweet automatically multiple times of the day, <a href="http://www.bravenewcode.com/store/plugins/wordtwit-pro/">WordTwit Pro</a> is a good fit for you. Even though it does lack some default settings that would highly improve the plugin, it still is a very nice plugin as it is that is far superior to other auto-tweet plugins currently available.</p>
<p><a href="http://www.xldstudios.com/automatically-tweet-wordtwit/">Review: Automatically Tweet Your WordPress Posts with WordTwit Pro</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/automatically-tweet-wordtwit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.2 Released. What&#8217;s new?</title>
		<link>http://www.xldstudios.com/wordpress-3-2-released-new/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-3-2-released-new</link>
		<comments>http://www.xldstudios.com/wordpress-3-2-released-new/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 13:31:51 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Addition]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Upgrade]]></category>
		<category><![CDATA[Version]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=262</guid>
		<description><![CDATA[<p>This week, the WordPress team released WordPress 3.2, (codenamed Gershwin) available directly from within the updates screen in the dashboard of your WordPress install. Before upgrading (which you should do), make sure you download a working backup of your database. Given that WordPress 3.2 is a major upgrade, the risk that it breaks certain themes ...</p><p><a href="http://www.xldstudios.com/wordpress-3-2-released-new/">WordPress 3.2 Released. What&#8217;s new?</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>This week, the WordPress team released WordPress 3.2, (codenamed Gershwin) available directly from within the updates screen in the dashboard of your WordPress install. Before upgrading (which you should do), make sure you download a working backup of your database.</p>
<p>Given that WordPress 3.2 is a major upgrade, the risk that it breaks certain themes and plugins is more present than smaller upgrades. Be extra careful if you are using plugins that are mission-critical to your website. Check that the plugins that you use are set as compatible with the new version, or try the upgrade on a test installation before upgrading your production website.</p>
<h2>What&#8217;s new in 3.2?</h2>
<p>It is always nice to see what new features are included in a new WordPress version and this one has quite a few news.</p>
<p><span id="more-262"></span></p>
<h3>New Dashboard Design</h3>
<div id="attachment_264" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/wp32-dashboard-theme.png"><img class="size-medium wp-image-264 " title="WordPress 3.2 - New Dashboard Theme" src="http://www.xldstudios.com/wp-content/uploads/2011/07/wp32-dashboard-theme-500x230.png" alt="WordPress 3.2 - New Dashboard Theme" width="500" height="230" /></a>
<p class="wp-caption-text">New Dashboard Theme in WordPress 3.2</p>
</div>
<p>The Dashboard has been tweaked in terms of design to make it faster and easier to use. Unfortunately the entire dashboard redesign feels a little undone and not near as tidy as the design was in 3.1, where they had fully nailed it.</p>
<p>It is however very nice to see that some wording has been cleaned up, mainly in the menu, to decrease confusion of what a certain selection does.</p>
<h3>Distraction Free Writing</h3>
<div id="attachment_265" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/wp32-distraction-free-writing.png"><img class="size-medium wp-image-265 " title="WordPress 3.2 - Distraction Free Writing" src="http://www.xldstudios.com/wp-content/uploads/2011/07/wp32-distraction-free-writing-500x276.png" alt="WordPress 3.2 - Distraction Free Writing" width="500" height="276" /></a>
<p class="wp-caption-text">New Distraction Free Writing Mode</p>
</div>
<p>Maybe the most great new feature in WordPress 3.2, distraction free writing lets you take the post editing full screen. You will end up with the title of the post as well as the post content and a small formatting bar up top. For everyone writing post directly in WordPress, before moving on to formatting after they are written, this new mode should prove to be extremely useful. My one wish is that I could get easy formatting support here with paragraph and heading support.</p>
<h3>New Default Theme: Twenty Eleven</h3>
<div id="attachment_266" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.xldstudios.com/wp-content/uploads/2011/07/wp32-new-interface.png"><img class="size-medium wp-image-266 " title="WordPress 3.2 - New Default Theme" src="http://www.xldstudios.com/wp-content/uploads/2011/07/wp32-new-interface-500x284.png" alt="WordPress 3.2 - New Default Theme" width="500" height="284" /></a>
<p class="wp-caption-text">The New Twenty Eleven Theme</p>
</div>
<p>It is wonderful to see that the WordPress team is keeping its promise to release a new theme every year. With WordPress 3.2 comes Twenty Eleven, a much more modern approach to the Twenty Ten theme featuring some beautiful interface enhancements.</p>
<p>The theme comes with full theme options which by default lets you select a color theme (dark or light) but will offer theme authors a much quicker start to building theme option pages for their themes, if they start with Twenty Eleven as a base.</p>
<h3>Updates Only Touch Changed Files</h3>
<p>The WordPress auto-update system has been wonderful to work with over the past few years. With WordPress 3.2, the team is taking it a step further to make it better and much faster. From now on, the updater will only modify and replace files that have been changes, leaving unchanged files as they are.</p>
<p>Since this has been a common practice for software developers for many years, it is certainly about time that this came to WordPress as well.</p>
<h3>More&#8230;</h3>
<p>Naturally there are a bunch of speed and performance enhancements included in this release as well as many bug fixes and other neat additions. One extra thing to note is that the requirements for WordPress has been increased to PHP 5.2.4+ and MySQL 5 (which we at XLD Studios fully support).</p>
<p><a href="http://www.xldstudios.com/wordpress-3-2-released-new/">WordPress 3.2 Released. What&#8217;s new?</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/wordpress-3-2-released-new/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseline—A CSS Framework</title>
		<link>http://www.xldstudios.com/baseline%e2%80%94a-css-framework/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=baseline%25e2%2580%2594a-css-framework</link>
		<comments>http://www.xldstudios.com/baseline%e2%80%94a-css-framework/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 06:00:25 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Baseline]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[Template]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=233</guid>
		<description><![CDATA[<p>I quite fancy the idea of frameworks to help speed up the daunting parts of web development. For some projects I have wished for an easy to use typography framework that gives good basic styles for basic paragraphs, lists, blockquotes, tables and forms. Baseline is a framework that seems to offer this. What is it ...</p><p><a href="http://www.xldstudios.com/baseline%e2%80%94a-css-framework/">Baseline—A CSS Framework</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I quite fancy the idea of frameworks to help speed up the daunting parts of web development. For some projects I have wished for an easy to use typography framework that gives good basic styles for basic paragraphs, lists, blockquotes, tables and forms. <a href="http://baselinecss.com/">Baseline</a> is a framework that seems to offer this.</p>
<p><img class="aligncenter size-full wp-image-234" title="Baseline CSS Framework" src="http://www.xldstudios.com/wp-content/uploads/2011/06/baseline.jpg" alt="Baseline CSS Framework" width="490" height="92" /></p>
<h3>What is it and what does it offer?</h3>
<p>Baseline is quite an extensive framework, offering styles for most typography tags as well as forms and tables. As an addition it also offers a grid, which to me is not as useful given the extensive 960 grid system that I tend to lean towards using.</p>
<p>This is a quote from their website:</p>
<blockquote><p>Built with typographic standards in mind, Baseline makes it easy to develop a website with a pleasing grid and good typography. Baseline starts with several files to reset the browser’s default behavior, build a basic typographic layout — including style for HTML forms and new HTML 5 elements — and build a simple grid system. Baseline was born to be a quick way to prototype a website and grew up to become a full typographic framework for the web using “real” baseline grid as its foundation.</p></blockquote>
<h3>Not All Things Golden Are Gold</h3>
<p>I have one issue with the Baseline framework. While it offers some excellent styles, specifically the tables which I find excellent, I am not convinced that this framework is all that I want as a base. The reason is not so much the rarely used tags which are mainly good but rather the main headings and paragraph tags. It takes a while to recover from its reset code and the way the paragraphs are set up.</p>
<p>If you like an indent as a paragraph starter, this should fit you perfectly, if you don&#8217;t you will have to work around this to be less &#8220;old book style&#8221; and more modern.</p>
<h3>Conclusion</h3>
<p>For the right project I will try to use Baseline, at least a few parts of it such as the tables. In the short time I have had playing around with it so far, I am torn between impressed and finding it useful and finding it a pain to use.</p>
<p><a href="http://www.xldstudios.com/baseline%e2%80%94a-css-framework/">Baseline—A CSS Framework</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/baseline%e2%80%94a-css-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updates to My.XLD Studios, Our Online Client Center</title>
		<link>http://www.xldstudios.com/updates-my-xld-studios-online-client-center/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updates-my-xld-studios-online-client-center</link>
		<comments>http://www.xldstudios.com/updates-my-xld-studios-online-client-center/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 06:00:34 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[Billing]]></category>
		<category><![CDATA[Client Center]]></category>
		<category><![CDATA[My.XLD Studios]]></category>
		<category><![CDATA[Service]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=238</guid>
		<description><![CDATA[<p>Our online client center, My.XLD Studios has been updated to a new version. The new version brings many exciting new features with it, most of them to our backend that ensures that we can offer you a better service and experience. My.XLD Studios is what we use to provide support to web hosting customers and ...</p><p><a href="http://www.xldstudios.com/updates-my-xld-studios-online-client-center/">Updates to My.XLD Studios, Our Online Client Center</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Our online client center, <a href="https://my.xldstudios.com/">My.XLD Studios</a> has been updated to a new version. The new version brings many exciting new features with it, most of them to our backend that ensures that we can offer you a better service and experience.</p>
<p>My.XLD Studios is what we use to provide support to web hosting customers and is used for all of our billing to all customers. The upgrade is part of a bigger structural change to be able to provide WordPress templates for sale in the near future.</p>
<p>Alongside the upgrade, it has been fully integrated into the new website design with a slightly new design to the main system itself.</p>
<p><a href="http://www.xldstudios.com/updates-my-xld-studios-online-client-center/">Updates to My.XLD Studios, Our Online Client Center</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/updates-my-xld-studios-online-client-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take Advantage Of Free Weekly Stock Photo Downloads</title>
		<link>http://www.xldstudios.com/advantage-free-weekly-stock-photo-downloads/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=advantage-free-weekly-stock-photo-downloads</link>
		<comments>http://www.xldstudios.com/advantage-free-weekly-stock-photo-downloads/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 06:00:32 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[iStockPhoto]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Shutterstock]]></category>
		<category><![CDATA[Stock]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=227</guid>
		<description><![CDATA[<p>Stock photography is great when building websites. Not only does it provide you with necessary images for client websites, such as images in a rotating banner or enhancing content, but it also works brilliantly for sample content for photo galleries until the client has had time to upload their own photos. Normally these stock photos ...</p><p><a href="http://www.xldstudios.com/advantage-free-weekly-stock-photo-downloads/">Take Advantage Of Free Weekly Stock Photo Downloads</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Stock photography is great when building websites. Not only does it provide you with necessary images for client websites, such as images in a rotating banner or enhancing content, but it also works brilliantly for sample content for photo galleries until the client has had time to upload their own photos.</p>
<p>Normally these stock photos are quite inexpensive for projects even though you probably will not purchase them just to use as sample content.</p>
<p>What you can do is to take advantage of the stock photo websites&#8217; free weekly downloads. Each week my to-do list alerts me to the fact that I need to download the free weekly offerings from both <a href="http://www.istockphoto.com/">iStockPhoto</a> and <a href="http://www.shutterstock.com/">Shutterstock</a>, two high-quality websites that each offer free photos and illustrations every week. All you need is to become a member which is free.</p>
<p>What are you waiting for? Increase your stock photo library with some free downloads!</p>
<p><a href="http://www.xldstudios.com/advantage-free-weekly-stock-photo-downloads/">Take Advantage Of Free Weekly Stock Photo Downloads</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/advantage-free-weekly-stock-photo-downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Simplifies HTML5/CSS3 Animations with &#8220;Edge&#8221;</title>
		<link>http://www.xldstudios.com/adobe-simplifies-html5css3-animations-edge/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=adobe-simplifies-html5css3-animations-edge</link>
		<comments>http://www.xldstudios.com/adobe-simplifies-html5css3-animations-edge/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 06:00:37 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe Edge]]></category>
		<category><![CDATA[Animations]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Edge]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=221</guid>
		<description><![CDATA[<p>Adobe posted videos yesterday previewing what they currently call &#8220;Edge&#8220;, an application for simplifying the creation of HTML5/CSS3 animations. Given that animations are rather tricky to get right this is a welcome app to help with this. Hopefully it will be available in Adobe Labs for everyone to download shortly. Meanwhile, you can watch this ...</p><p><a href="http://www.xldstudios.com/adobe-simplifies-html5css3-animations-edge/">Adobe Simplifies HTML5/CSS3 Animations with &#8220;Edge&#8221;</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>Adobe posted videos yesterday previewing what they currently call &#8220;<a href="http://labs.adobe.com/technologies/edge/">Edge</a>&#8220;, an application for simplifying the creation of HTML5/CSS3 animations. Given that animations are rather tricky to get right this is a welcome app to help with this. Hopefully it will be available in Adobe Labs for everyone to download shortly. Meanwhile, you can watch this video (below the jump) to get an idea of <a href="http://labs.adobe.com/technologies/edge/">Adobe Edge</a>.</p>
<p>I also wanted to take this moment to highlight the <a href="https://www.eiseverywhere.com/ereg/index.php?eventid=24804&amp;">HTML5 camps</a> that Adobe is putting on for free. You&#8217;ll catch it in San Francisco on July 22nd, Tokyo on August 4th, New York City on August 5th and Berlin in mid-October.</p>
<p><span id="more-221"></span></p>
<p><object width="730" height="573"><param name="movie" value="http://www.youtube.com/v/8FnNtX73v8k?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="opaque"></param><embed wmode="opaque"  src="http://www.youtube.com/v/8FnNtX73v8k?version=3" type="application/x-shockwave-flash" width="730" height="573" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://www.xldstudios.com/adobe-simplifies-html5css3-animations-edge/">Adobe Simplifies HTML5/CSS3 Animations with &#8220;Edge&#8221;</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/adobe-simplifies-html5css3-animations-edge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Boilerplate Makes For Quick Start</title>
		<link>http://www.xldstudios.com/html5-boilerplate-quick-start/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=html5-boilerplate-quick-start</link>
		<comments>http://www.xldstudios.com/html5-boilerplate-quick-start/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 06:00:15 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[HTML5 Boilerplate]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[Template]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=208</guid>
		<description><![CDATA[<p>I am a big fan of templates that gives me just a good-enough start to be helpful, yet little enough to be over the top. When moving to HTML5 coding, the HTML5 Boilerplate package might offer you a good start on what you want and need for your project. What does it offer? The first ...</p><p><a href="http://www.xldstudios.com/html5-boilerplate-quick-start/">HTML5 Boilerplate Makes For Quick Start</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I am a big fan of templates that gives me just a good-enough start to be helpful, yet little enough to be over the top. When moving to HTML5 coding, the <a href="http://html5boilerplate.com/">HTML5 Boilerplate package</a> might offer you a good start on what you want and need for your project.</p>
<p><span id="more-208"></span></p>
<h3>What does it offer?</h3>
<p>The first question to ask is what the boilerplate offers you. The answer is solely speed and efficiency. By using this template as a start, I have found that it is much easier to get going with the main coding, instead of having to do the necessary preparation and base code which stays the same for most projects.</p>
<h3>Customize Your Package</h3>
<p>While the package comes in a standard package, it also offers a page to customize what you want to download specifically, depending on the need of a specific project.</p>
<p>You are able to select whether you want the conditional IE classes in there, whether to include a special handheld (mobile) stylesheet, whether to include jQuery, which HTML5 enabler script you wish to run, any server configuration file you wish to thrown in and finally whether you want a Google Analytics code.</p>
<p>All of these options may change in your projects, and the Boilerplate website makes it easy to customize what you need, grab it and use it.</p>
<h3>Conclusion</h3>
<p>Here at XLD Studios, we use the <a href="http://html5boilerplate.com/">HTML5 Boilerplate</a> currently on every new project that can be done in HTML5. Currently I feel it is the best package out there and is helpful enough and saves a good amount of time, also compared to building your own template. Since it is free to use, I&#8217;d suggest you go and play around with it!</p>
<p><a href="http://www.xldstudios.com/html5-boilerplate-quick-start/">HTML5 Boilerplate Makes For Quick Start</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/html5-boilerplate-quick-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome To The New XLD Studios Website!</title>
		<link>http://www.xldstudios.com/xld-studios-website/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=xld-studios-website</link>
		<comments>http://www.xldstudios.com/xld-studios-website/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 18:24:25 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[Company]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=201</guid>
		<description><![CDATA[<p>I am very proud to be able to present to you the new XLD Studios website. We have been working hard on this website, bringing a lot of new features to it especially behind the scenes. It has been a long time coming and I take great pleasure in being able to present the updated ...</p><p><a href="http://www.xldstudios.com/xld-studios-website/">Welcome To The New XLD Studios Website!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>I am very proud to be able to present to you the new XLD Studios website. We have been working hard on this website, bringing a lot of new features to it especially behind the scenes. It has been a long time coming and I take great pleasure in being able to present the updated website, better reflecting what XLD Studios does as a design company.</p>
<p>Keep checking back here on the blog for design and development related articles and videos from us, perfect if you want to learn a little more about the web.</p>
<p><a href="http://www.xldstudios.com/xld-studios-website/">Welcome To The New XLD Studios Website!</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/xld-studios-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launching New Website for The Lightroom Queen</title>
		<link>http://www.xldstudios.com/launching-website-lightroom-queen/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=launching-website-lightroom-queen</link>
		<comments>http://www.xldstudios.com/launching-website-lightroom-queen/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 17:21:08 +0000</pubDate>
		<dc:creator>Erik Bernskiold</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[The Lightroom Queen]]></category>

		<guid isPermaLink="false">http://www.xldstudios.com/?p=91</guid>
		<description><![CDATA[<p>We are pleased to be launching a brand new website for The Lightroom Queen today. Victoria Bampton (The Lightroom Queen) wanted to update her website to a more modern feel featuring the Adobe Lightroom interface. At the same time, Victoria wanted to easily be able to update the entire website through a web admin panel. The ...</p><p><a href="http://www.xldstudios.com/launching-website-lightroom-queen/">Launching New Website for The Lightroom Queen</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></description>
			<content:encoded><![CDATA[<p>We are pleased to be launching a brand new website for <a href="http://www.lightroomqueen.com/">The Lightroom Queen</a> today. Victoria Bampton (The Lightroom Queen) wanted to update her website to a more modern feel featuring the Adobe Lightroom interface. At the same time, Victoria wanted to easily be able to update the entire website through a web admin panel.</p>
<p>The new website is designed closely around the Lightroom interface, featuring similar UI conceptions and colors. On the backend, the site is powered by WordPress which is easy to use and appropriately sized for her website. In addition, the website features advanced book templates which makes adding new books simple.</p>
<p><a href="http://www.xldstudios.com/portfolio/lightroom-queen/">View the website in our portfolio »</a></p>
<p><a href="http://www.xldstudios.com/launching-website-lightroom-queen/">Launching New Website for The Lightroom Queen</a> published at <a href="http://www.xldstudios.com">XLD Studios</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.xldstudios.com/launching-website-lightroom-queen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

