<?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>Element Design &#187; Quick Tips</title>
	<atom:link href="http://elementdesignllc.com/category/quick-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://elementdesignllc.com</link>
	<description></description>
	<lastBuildDate>Fri, 11 Jun 2010 13:37:49 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Best way to hide text: Go up</title>
		<link>http://elementdesignllc.com/2010/04/best-way-to-hide-text-go-up/</link>
		<comments>http://elementdesignllc.com/2010/04/best-way-to-hide-text-go-up/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 13:37:28 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[Quick Tips]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=540</guid>
		<description><![CDATA[With a larger monitor I&#8217;ve noticed many websites hiding text by sending it to the left or right. This works great on smaller monitors, but on higher resolution you all of a sudden see that text way off the side.
Simply send the text up instead. No matter how high of a screen resolution your user [...]]]></description>
			<content:encoded><![CDATA[<p>With a larger monitor I&#8217;ve noticed many websites hiding text by sending it to the left or right. This works great on smaller monitors, but on higher resolution you all of a sudden see that text way off the side.</p>
<p>Simply send the text up instead. No matter how high of a screen resolution your user has, they will never be able to scroll above the top of your website.</p>
<pre class="brush: plain;">
.hideme {
   position:absolute;
   top:-1000;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2010/04/best-way-to-hide-text-go-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Square HTML Special Character</title>
		<link>http://elementdesignllc.com/2010/03/the-square-html-special-character/</link>
		<comments>http://elementdesignllc.com/2010/03/the-square-html-special-character/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 15:23:17 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[special character]]></category>
		<category><![CDATA[square]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=512</guid>
		<description><![CDATA[Displaying a simple square in HTML can be done by using the code:
&#38;#9744
Example: ☐
]]></description>
			<content:encoded><![CDATA[<p>Displaying a simple square in HTML can be done by using the code:</p>
<pre class="brush: plain;">&amp;#9744</pre>
<p>Example: ☐</p>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2010/03/the-square-html-special-character/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pre-Selecting Form Elements</title>
		<link>http://elementdesignllc.com/2009/12/preselecting-form-elements/</link>
		<comments>http://elementdesignllc.com/2009/12/preselecting-form-elements/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 18:34:19 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[checkboxes]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=444</guid>
		<description><![CDATA[Checkboxes:

&#60;input type=&#34;checkbox&#34; name=&#34;test_box&#34; value=&#34;1&#34; checked /&#62;
&#60;input type=&#34;checkbox&#34; name=&#34;test_box&#34; value=&#34;2&#34; /&#62;

Radio Buttons

&#60;input type=&#34;radio&#34; name=&#34;test_radio&#34; value=&#34;1&#34; checked /&#62;
&#60;input type=&#34;radio&#34; name=&#34;test_radio&#34; value=&#34;2&#34; /&#62;

Dropdowns (&#60;select&#62;)

&#60;select name=&#34;test_select&#34;&#62;
   &#60;option value=&#34;1&#34; selected&#62;Value 1&#60;/option&#62;
   &#60;option value=&#34;2&#34;&#62;Value 2&#60;/option&#62;
&#60;/select&#62;

]]></description>
			<content:encoded><![CDATA[<p><strong>Checkboxes:</strong></p>
<pre class="brush: xml;">
&lt;input type=&quot;checkbox&quot; name=&quot;test_box&quot; value=&quot;1&quot; checked /&gt;
&lt;input type=&quot;checkbox&quot; name=&quot;test_box&quot; value=&quot;2&quot; /&gt;
</pre>
<p><strong>Radio Buttons</strong></p>
<pre class="brush: xml;">
&lt;input type=&quot;radio&quot; name=&quot;test_radio&quot; value=&quot;1&quot; checked /&gt;
&lt;input type=&quot;radio&quot; name=&quot;test_radio&quot; value=&quot;2&quot; /&gt;
</pre>
<p><strong>Dropdowns (&lt;select&gt;)</strong></p>
<pre class="brush: xml;">
&lt;select name=&quot;test_select&quot;&gt;
   &lt;option value=&quot;1&quot; selected&gt;Value 1&lt;/option&gt;
   &lt;option value=&quot;2&quot;&gt;Value 2&lt;/option&gt;
&lt;/select&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2009/12/preselecting-form-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image ALT Tags</title>
		<link>http://elementdesignllc.com/2009/12/image-alt-tags/</link>
		<comments>http://elementdesignllc.com/2009/12/image-alt-tags/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 16:30:52 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[alt tags]]></category>
		<category><![CDATA[html tags]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=422</guid>
		<description><![CDATA[Easily avoid one of the most common mistakes in website accessibilty and SEO optimization by including an ALT tag on all images.


&#60;img src=&#34;image.jpg&#34; alt=&#34;I describe the image&#34; /&#62;

Read more about ALT tags.
]]></description>
			<content:encoded><![CDATA[<p>Easily avoid one of the most common mistakes in website accessibilty and SEO optimization by including an ALT tag on all images.</p>
<pre class="brush: plain;">

&lt;img src=&quot;image.jpg&quot; alt=&quot;I describe the image&quot; /&gt;
</pre>
<p><a href="http://en.wikipedia.org/wiki/Alt_attribute" target="_blank">Read more about ALT tags.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2009/12/image-alt-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embed Google Calendar on your website</title>
		<link>http://elementdesignllc.com/2009/11/embed-google-calendar-on-your-website/</link>
		<comments>http://elementdesignllc.com/2009/11/embed-google-calendar-on-your-website/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 17:58:23 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=411</guid>
		<description><![CDATA[Embedding Google Calendar onto your website is a great way to quickly setup an attractive and interactive events calendar. Watch this video on how to do it:

]]></description>
			<content:encoded><![CDATA[<p>Embedding Google Calendar onto your website is a great way to quickly setup an attractive and interactive events calendar. Watch this video on how to do it:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/2tnYwbs-yDk&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/2tnYwbs-yDk&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2009/11/embed-google-calendar-on-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proximity Matters with Users</title>
		<link>http://elementdesignllc.com/2009/10/proximity-matters-with-users/</link>
		<comments>http://elementdesignllc.com/2009/10/proximity-matters-with-users/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 19:28:11 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[jiad]]></category>
		<category><![CDATA[proximity]]></category>
		<category><![CDATA[sales]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=397</guid>
		<description><![CDATA[Build your site and write your copy with the focus of connecting to your users geographically. Whether you reinforce or create the illusion you operate nearby, the results can lead to more sales.
Source &#8211; JIAD: Does Place Matter When Shopping Online? Perceptions of Similarity and Familiarity as Indicators of Psychological Distance
]]></description>
			<content:encoded><![CDATA[<p>Build your site and write your copy with the focus of connecting to your users geographically. Whether you reinforce or create the illusion you operate nearby, the results can lead to more sales.</p>
<p><em>Source &#8211; </em><a href="http://jiad.org/article123" target="_blank"><em>JIAD: Does Place Matter When Shopping Online? Perceptions of Similarity and Familiarity as Indicators of Psychological Distance</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2009/10/proximity-matters-with-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Element Design Quick Tips</title>
		<link>http://elementdesignllc.com/2009/10/element-design-quick-tips/</link>
		<comments>http://elementdesignllc.com/2009/10/element-design-quick-tips/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 19:28:00 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=399</guid>
		<description><![CDATA[A new feature that will be immediately added to the blog are &#8220;Quick Tips&#8221;. These are short, several sentence articles that describe an important aspect of designing and developing a website. For a full listing of tips, click &#8220;Quick Tips&#8221; on the right navigation.
]]></description>
			<content:encoded><![CDATA[<p>A new feature that will be immediately added to the blog are &#8220;Quick Tips&#8221;. These are short, several sentence articles that describe an important aspect of designing and developing a website. For a full listing of tips, click &#8220;Quick Tips&#8221; on the right navigation.</p>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2009/10/element-design-quick-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
