<?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>Soma Design &#187; Tips</title>
	<atom:link href="http://somadesign.ca/blog/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://somadesign.ca</link>
	<description>Winnipeg Web Design · WordPress Development</description>
	<lastBuildDate>Wed, 25 Apr 2012 23:56:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Quix Bookmarklet</title>
		<link>http://somadesign.ca/2010/quix-bookmarklet/</link>
		<comments>http://somadesign.ca/2010/quix-bookmarklet/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 21:01:21 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[fontfriend]]></category>
		<category><![CDATA[quix]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://somadesign.ca/?p=400</guid>
		<description><![CDATA[Here’s something pretty cool — a meta-bookmarklet called Quix.app by Joost de Valk. It gives you access to dozens of functions and bookmarklets in one container. Invoke the bookmarklet and type, for instance, “gs where do babies come from” to run a Google search on the current site you’re viewing. There are oodles of goodies [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s something pretty cool — a meta-bookmarklet called <a href="http://quixapp.com/">Quix.app</a> by <a href="http://yoast.com/">Joost de Valk</a>. It gives you access to dozens of functions and bookmarklets in one container. Invoke the bookmarklet and type, for instance, “<code>gs where do babies come from</code>” to run a Google search on the<em> current site you’re viewing</em>.</p>
<p>There are <a href="http://quixapp.com/help/">oodles of goodies</a> in there for web developers, and WordPress folks. And I might commend Joost’s good taste in including <a title="FontFriend" href="http://somadesign.ca/projects/fontfriend/">FontFriend</a> in Quix — just type “<code>font</code>” and you’re off.</p>
]]></content:encoded>
			<wfw:commentRss>http://somadesign.ca/2010/quix-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Defense Against MS Word</title>
		<link>http://somadesign.ca/2009/css-defense-against-ms-word/</link>
		<comments>http://somadesign.ca/2009/css-defense-against-ms-word/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 18:19:57 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[copy and paste]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[defensive design]]></category>
		<category><![CDATA[ms word]]></category>
		<category><![CDATA[rich text editor]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://somadesign.ca/?p=111</guid>
		<description><![CDATA[Copy and pasting from MS Word into a CMS visual editor produces a world of stylistic hurt. Some defensive <abbr title="Cascading Style Sheets">CSS</abbr> styles come to the rescue.]]></description>
			<content:encoded><![CDATA[<p>One of the banes of content management is the style inconsistencies introduced when someone does a copy and paste from MS Word directly into the rich text editor of their <abbr title="Content Management System">CMS</abbr>, introducing different font families, line spacing and indentation. One line of defense against this is WordPress’ TinyMCE editor’s “Paste from Word” button that content authors should be trained to use in an ideal world.</p>
<p>But, in the real world, training is spotty, often forgotten and authors will still paste directly from Word. Compounding this is that the editor currently needs to be expanded to even see this functionality. Also, the disadvantage of pasting plain text is that authors lose formatting such as bold and italics, which is frustrating. In an effort to combat this, I’ve come up with the following defensive <abbr title="Cascading Style Sheets">CSS</abbr> styles that I will add to all future sites I deliver to clients.</p>
<pre>
<code>.MsoNormal {
margin: [normal &lt;p&gt; margins here] !important;
text-indent: 0 !important;
}
.MsoNormal span, font {
font-size: inherit !important;
font-family: inherit !important;
color: inherit !important;
}</code>
</pre>
<p><em>Notes:</em></p>
<ul>
<li>the <code>.MsoNormal</code> class is, in my experience, always attached to a <code>&lt;p&gt;</code> element. If you are setting margins specifically on the <code>&lt;p&gt;</code> element, you cannot tell it to inherit, because there’s nothing to inherit from. Instead, match the margin styling on the appropriate <code>&lt;p&gt;</code> element</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://somadesign.ca/2009/css-defense-against-ms-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &amp; Google Analytics Tip</title>
		<link>http://somadesign.ca/2008/wordpress-google-analytics-tip/</link>
		<comments>http://somadesign.ca/2008/wordpress-google-analytics-tip/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 04:16:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[code explanation]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[site statistics]]></category>

		<guid isPermaLink="false">http://somadesign.ca/blog/wordpress-blog/2008/wordpress-google-analytics-tip/</guid>
		<description><![CDATA[Learn how to keep your visits to your own WordPress sites from showing up in you Google Analytics statistics with one simple piece of code.]]></description>
			<content:encoded><![CDATA[<p>One thing that always used to bug me when I was surfing my own sites was that I was inflating my site statistics. This is especially the case when I go through a bunch of posts to check for factual and grammatical issues. I’m interested in knowing when other people are accessing my old posts, but I don’t my analytics package to mistake me for them! So, I hacked together a bit of <a href="http://wordpress.org/" title="WordPress">WordPress</a> solution that will ensure that I don’t get served the <a href="http://www.google.com/analytics/" title="Go to Google Analytics">Google Analytics</a> tracking script  when I view the pages. Here’s the code: explanation to follow.</p>
<p><code class="block">&lt;?php<br />
if ( !is_user_logged_in() &amp;&amp; (get_bloginfo('home') == "http://<strong>yourblogurl.com"</strong>) ) { ?&gt;<br />
&nbsp;<br />
<strong> Google Analytics code goes here.</strong><br />
&nbsp;<br />
&lt;?php } ?&gt;</code><br />
The <code>if()</code> statement is what drives this code, checking firstly that the person viewing the page is <strong>not<em> </em></strong>a logged-in user. Then it adds a second line of defense against serving the analytics code when I’m developing on my local machine. It ensures that the page is being served by your production server (fill in whatever your blog’s home url happens to be) so that your local development also doesn’t inflate your pageviews.</p>
<p>Of course, this would work with any analytics code. Just insert this snippet wherever the tracking code is supposed to go, and you should be all set!</p>
]]></content:encoded>
			<wfw:commentRss>http://somadesign.ca/2008/wordpress-google-analytics-tip/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Searching for Domain Names</title>
		<link>http://somadesign.ca/2008/searching-for-domain-names/</link>
		<comments>http://somadesign.ca/2008/searching-for-domain-names/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 00:48:06 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[ajaxwhois]]></category>
		<category><![CDATA[domain name]]></category>
		<category><![CDATA[network solutions]]></category>
		<category><![CDATA[registrar]]></category>

		<guid isPermaLink="false">http://somadesign.ca/blog/tips/searching-for-domain-names/</guid>
		<description><![CDATA[Selling domain names is a big business, which means that there's always someone out to make a buck off of unsuspecting customers. One large domain seller is engaging in dirty practices that we can help you avoid.]]></description>
			<content:encoded><![CDATA[<p>One of the key questions when beginning a website is <em>what domain should I use?</em> Even more importantly, you will soon be asking <em>which domain names are available?</em> For instance, while I originally wanted somadesign.com as my domain, I had to settle on somadesign.ca because somebody else owns somadesign.com and wants far more money to sell it than I’m able to afford.</p>
<p>What occurred in between my initial desire for one domain and finding one that was available was a whole lot of searching. I tried dozens of different names and variations to the point of mild obsession. Most domain name registrars include a convenient little search box where you can try a domain to see if it’s available. I was always a little leery of this, since there was nothing preventing the site from capturing my search term and buying the domain itself. It turns out that Network Solutions, one of the largest domain name registrars around, has been doing exactly this. <a href="http://commandline.org.uk/more/squat-for-the-win-2008-01-09-03-36" title="Network Solutions - Squat for the Win">Command Line Warriors has the full story</a>.</p>
<p>What it boils down to is this: Network Solutions would take your search term and register the domain <em>themselves</em>. They would then be only too happy to sell it to you, but now you’re unable to take your business anywhere else! My suggestion to avoid all of this is to do one of two things. 1) If you’re my client, leave it to me. I’ll make sure that your domain search isn’t compromised like this. 2) If you want to search yourself, use a trustworthy source like <a href="http://www.ajaxwhois.com/" title="AjaxWhois.com">AjaxWhois</a>, who have publicly denounced Network Solutions and <a href="http://ajaxwhois.blogspot.com/2008/01/network-solutions-stealing-domains.html" title=" Network Solutions stealing domains!">promise never to do such a thing</a> with your data. Also, you can search across multiple Top Level Domains such as .com, .org, .net, etc. simultaneously. Very nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://somadesign.ca/2008/searching-for-domain-names/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 613/707 objects using apc

Served from: somadesign.ca @ 2012-05-16 21:48:27 -->
