<?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>letscounthedays &#187; Tutorial</title>
	<atom:link href="http://www.shayhowe.com/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shayhowe.com</link>
	<description>The Online Portfolio of Creative Professional Shay Howe</description>
	<lastBuildDate>Thu, 15 Jul 2010 01:02:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Hyperlink CSS Attribute Selectors</title>
		<link>http://www.shayhowe.com/tutorial/hyperlink-css-attribute-selectors/</link>
		<comments>http://www.shayhowe.com/tutorial/hyperlink-css-attribute-selectors/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 23:26:12 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=1009</guid>
		<description><![CDATA[CSS attribute selectors provide an additional method of setting CSS styles outside of ids and classes. Learn how an attribute selector, when used with a hyperlink, can increase your clicks.


Related posts:<ol><li><a href='http://www.shayhowe.com/seo/6-visual-media-optimization-mistakes/' rel='bookmark' title='Permanent Link: 6 Visual Optimization Mistakes'>6 Visual Optimization Mistakes</a></li>
<li><a href='http://www.shayhowe.com/seo/top-10-keyword-research-tips/' rel='bookmark' title='Permanent Link: Top 10 Keyword Research Tips'>Top 10 Keyword Research Tips</a></li>
<li><a href='http://www.shayhowe.com/iphone/iphone-picture-messaging/' rel='bookmark' title='Permanent Link: iPhone Picture Messaging'>iPhone Picture Messaging</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<link rel="stylesheet" href="/wp-content/themes/letscounthedays/articles/hyperlink-css-attribute-selectors/links.css" type="text/css" media="screen" />

<h1><a href="/tutorial/hyperlink-css-attribute-selectors/" title="Document Links Styled with CSS Attribute Selectors">Document Links Styled with CSS Attribute Selectors</a></h1>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/hyperlink-css-attribute-selectors/document-css-links.jpg" alt="Document Links Styled with CSS Attribute Selectors" />

<p>With <abbr title="Cascading Style Sheets 3">CSS3</abbr> gaining popularity so are <abbr title="Cascading Style Sheets">CSS</abbr> attribute selectors. CSS attribute selectors have been around for some time however CSS3 adds more selectors to the mix bringing new light to subject. Increased browser support, with nearly every major browser currently supporting attribute selectors <i>(Internet Explorer 6 still struggles)</i>, has also added to the popularity.</p>

<p>So what benefit do CSS attribute selectors have to adding style to document links? CSS attribute selectors allow you to quickly and easily add styles to document links while keeping your code clean and clutter free. Ultimately, the more attractive looking your links are the more clicks they will receive.</p><span id="more-1009"></span>

<h4>PDF Hyperlink Example</h4>

<h3>HTML Code</h3>
<pre><code>&#60;a href="#.pdf" title="PDF File Link"&#62;PDF File&#60;/a&#62;</code></pre>

<h3>CSS Code</h3>
<pre><code>a[href$=".pdf"] {
	background: url(acrobat.gif) no-repeat left center;
	padding-left: 20px;
}
</code></pre>

<h3>Output</h3>
<p><a href="#.pdf" title="PDF File External Link" rel="nofollow">PDF File</a></p>

<h4>Breaking Down the Attribute Selector</h4>

<p>You start your CSS just as if your were to style any other hyperlink. Directly following the <code>a</code> element comes the attribute selector, in this case <code>[href$=".pdf"]</code>. The attribute selector will always be wrapped in <code>[]</code> brackets and will always sit right next to the element to which it applies to without any spaces in-between the two.</p>

<p>Within the <code>[]</code> brackets the <code>href</code> attribute is declared as we are specifically targeting hyperlinks. Next we insert the <code>$=</code> selector, which specifies that we only want to target hyperlinks ending with the file format value to follow. For this example we are using a PDF document making the value <code>.pdf</code>, which is wrapped in <code>""</code> quotations.</p>

<p>To target any other type of document just change the value to what ever file extension you wish. As an example, to target Microsoft Word documents just change the <code>.pdf</code> value to <code>.doc</code>.</p>

<h4>Taking It a Step Further</h4>

<p>Chris Coyier from CSS-Tricks has put together and outstanding resource on CSS attribute selectors in his article &#8220;<a href="http://css-tricks.com/attribute-selectors/" title="The Skinny on CSS Attribute Selectors" rel="nofollow">The Skinny on CSS Attribute Selectors</a>&#8221;. To learn the full potential of CSS attribute selectors this article is a must read as it does a great job of breaking them down for you.</p>

<p>If you are worried about the lack of support for Internet Explorer 6 you can, with a some additional work, use CSS attribute selectors via jQuery. Zac Gordon has written a great tutorial, &#8220;<a href="http://dabrook.org/blog/articles/selecting-and-styling-external-links-or-pdf-ppts-and-other-files-by-extensi/" title="Selecting and Styling External Links, PDFs, PPTs, and other links by file extension using jQuery" rel="nofollow">Selecting and Styling External Links, PDFs, PPTs, and other links by file extension using jQuery</a>&#8221;, on how to do so.</p>

<p>Adding an icon to your document links is a great way to quickly draw more attention to the link. InstantShift has put together an article packed full of icons. If you would like some to use on your website check out the article at &#8220;<a href="http://www.instantshift.com/2009/08/19/75-free-useful-icon-sets-for-web-designers-and-developers/" title="75 Free Useful Icon Sets for Web Designers and Developers" rel="nofollow">75 Free Useful Icon Sets for Web Designers and Developers</a>&#8221;.</p>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/seo/6-visual-media-optimization-mistakes/' rel='bookmark' title='Permanent Link: 6 Visual Optimization Mistakes'>6 Visual Optimization Mistakes</a></li>
<li><a href='http://www.shayhowe.com/seo/top-10-keyword-research-tips/' rel='bookmark' title='Permanent Link: Top 10 Keyword Research Tips'>Top 10 Keyword Research Tips</a></li>
<li><a href='http://www.shayhowe.com/iphone/iphone-picture-messaging/' rel='bookmark' title='Permanent Link: iPhone Picture Messaging'>iPhone Picture Messaging</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/tutorial/hyperlink-css-attribute-selectors/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 10 Keyword Research Tips</title>
		<link>http://www.shayhowe.com/seo/top-10-keyword-research-tips/</link>
		<comments>http://www.shayhowe.com/seo/top-10-keyword-research-tips/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 04:00:52 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Pay Per Click (PPC)]]></category>
		<category><![CDATA[Return On Investment (ROI)]]></category>
		<category><![CDATA[Search Engine Optimization (SEO)]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=344</guid>
		<description><![CDATA[I have never heard anyone say that a website could have too much traffic, it is unheard of. People are always looking to obtain more traffic - and rightfully so. But how do you obtain large amounts of traffic?


Related posts:<ol><li><a href='http://www.shayhowe.com/seo/keyword-dos-and-donts/' rel='bookmark' title='Permanent Link: Keyword Do&#039;s and Don&#039;ts'>Keyword Do&#039;s and Don&#039;ts</a></li>
<li><a href='http://www.shayhowe.com/seo/are-meta-tags-important/' rel='bookmark' title='Permanent Link: Are Meta Tags Important?'>Are Meta Tags Important?</a></li>
<li><a href='http://www.shayhowe.com/web-design/10-ecommerce-tips/' rel='bookmark' title='Permanent Link: 10 Quick E-Commerce Tips'>10 Quick E-Commerce Tips</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h1><a href="/tutorial/top-10-keyword-research-tips/">10 Keyword Research Tips to Maximize Your SEO Efforts</a></h1>

<p>I have never heard anyone say that a website could have too much traffic, it is unheard of. People are always looking to obtain more traffic - and rightfully so. But how do you obtain large amounts of traffic? Research shows that the majority of all traffic comes from search engines. And how do you show up in search engines? You target specific keywords and market your website or pages around these keywords. With this, ideally the more keywords you target the more traffic you will see. Follow these top 10 keyword research tips to make the most out of your targeted list of keywords.</p>

<img src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/top-10-keywords/1.jpg" alt="Keyword Research" /><span id="more-344"></span>

<h3>1. Think like potential customers.</h3>
<p>To even begin developing a keyword list you need to know and understand how potential customers are going to search for your product or services. What may be relevant and a common understanding to you may be completely over the heads of your clientele. Technical or specific terms you use might not even be searched. Always think like a potential customer when developing keywords.</p>

<h3>2. Analysis any competitors.</h3>
<p>It is always a good idea to know who you are competing against. Doing so will provide you with insight not only to how your industry is being marketed online, but to also new keywords and descriptions you may have never even thought about. Visit competitors websites, check their code, and make sure that you are not leaving out anything critical.</p>

<h3>3. Use typos and misspellings.</h3>
<p>It is not uncommon for people misspell words and phrases in their searches. While you may not want to place misspelled words on your web page for rankings it is possible to run pay per click on these words, and they are often cheaper than the correct spelling. A good tool to use to locate common misspelled words and typos see <a href="http://www.searchspell.com/typo/" rel="nofollow" target="_blank">SearchSpell Typo</a>.</p>

<p><strong>Examples:</strong><br />
Calendar &gt; Calender<br />
Your &gt; You're<br />
Here &gt; Hear</p>

<h3>4. Use acronyms and abbreviations.</h3>
<p>Acronyms and abbreviations make up a large amount of search traffic, thus making it important for you to make sure that your not missing any keywords. Many keyword generators will miss out on acronyms and abbreviations so be sure that you are doing this yourself to uncover your full potential list of keywords.</p>

<p><strong>Examples:</strong><br />
9/11 &gt; September 11th<br />
SEO &gt; Search Engine Optimization<br />
PPC &gt; Pay Per Click</p>

<h3>5. Use multiple verbs.</h3>
<p>Everyone has a different mindset when it comes to searching, therefore you want to make sure that you are using a contrast of different verbs.</p>

<p><strong>Examples:</strong><br />
try to play<br />
trying to play<br />
try playing<br />
trying playing</p>


<h3>6. Use both plural and singular.</h3>
<p>Using both plural and singular keywords will easily magnify your list quickly. Most major search engines will take in to consideration plural and singular forms within organic results however keep in mind if running a pay per click campaign Yahoo Search Marketing does not while Google AdWords does.</p>

<p><strong>Examples:</strong><br />
mountain bike<br />
mountains bike<br />
mountain bikes<br />
mountains bikes</p>


<h3>7. Use compound, separated, hyphenated, and merged keywords.</h3>
<p>Users often search trying multiple variations of words and spellings looking for the right fit. To be sure you are not missing out on any terms or phrases research compound, separated, hyphenated, and merged keywords.</p>

<p><strong>Examples:</strong><br />
checkin &gt; check-in &gt; check in<br />
startup &gt; start-up &gt; start up<br />
lifesize &gt; life-size &gt; life size</p>


<h3>8. Use locations.</h3>
<p>One of the best ways to pick up traffic is to localize your keywords. If you are looking to pick up traffic on a national level create a few sub pages targeting localized keywords in the most popular areas. This will directly target your visitors and overall will increase your conversion rate if done correctly.</p>

<p><strong>Examples:</strong><br />
Phoenix web design<br />
Arizona SEO<br />
Chandler, AZ artist</p>


<h3>9. Use Adjectives</h3>
<p>Numerous users will use adjectives in addition to the main keywords. This is a fast way to pick up keywords and even spark an immediate interest with users.</p>

<p><strong>Examples:</strong><br />
Good, Better, Best<br />
Far, Further, Furthest<br />
Much, More, Most<br />
Little, Less, Least<br />
or Free, Cheap, Amazing, Pretty, New</p>


<h3>10. Refine list.</h3>
<p>After you have built your keyword list its quite possible that your list is far too big and contains some keywords that can be tossed out. Narrow down the list by selecting a good mix of both broad and targeted keywords directly related to the subject and theme of your website. Keep these keywords as you will want to rank for both. Remove any keywords that are not relevant to your website or keywords that you don't have enough content to support. Remember it is always possible to go back and add content and keywords later as well.</p>

<h4>Get Started!</h4>
<p>You can begin your keyword research for free using any of the following tools. These are great resources to help you find new keywords or get your pay per click campaign off the ground. However one thing to keep in mind, since these resources are free it is likely that your competitors are using them as well. For the best results be a little creative and thing outside the box when at all possible.</p>

<ul class="square mar-btm">
<li><a href="https://adwords.google.com/select/KeywordToolExternal" rel="nofollow" target="_blank">Google Keyword Tool</a></li>
<li><a href="http://freekeywords.wordtracker.com/" rel="nofollow" target="_blank">Wordtracker Free Keyword Tool</a></li>
<li><a href="http://www.keyworddiscovery.com/search.html" rel="nofollow" target="_blank">Keyword Discovery Free Tool</a></li>
<li><a href="http://www.google.com/trends" rel="nofollow" target="_blank">Google Trends</a></li>
<li><a href="http://tools.seobook.com/keyword-tools/seobook/" rel="nofollow" target="_blank">SEO Book Keyword Suggestion Tool</a></li>
</ul>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/seo/keyword-dos-and-donts/' rel='bookmark' title='Permanent Link: Keyword Do&#039;s and Don&#039;ts'>Keyword Do&#039;s and Don&#039;ts</a></li>
<li><a href='http://www.shayhowe.com/seo/are-meta-tags-important/' rel='bookmark' title='Permanent Link: Are Meta Tags Important?'>Are Meta Tags Important?</a></li>
<li><a href='http://www.shayhowe.com/web-design/10-ecommerce-tips/' rel='bookmark' title='Permanent Link: 10 Quick E-Commerce Tips'>10 Quick E-Commerce Tips</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/seo/top-10-keyword-research-tips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPhone Picture Messaging</title>
		<link>http://www.shayhowe.com/iphone/iphone-picture-messaging/</link>
		<comments>http://www.shayhowe.com/iphone/iphone-picture-messaging/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 06:01:22 +0000</pubDate>
		<dc:creator>Shay Howe</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.shayhowe.com/?p=282</guid>
		<description><![CDATA[It is amazing that with all of this technology and all of the advancements with cell phones over the past few years that the iPhone still does not have the capability to send picture messages. That is until now.


Related posts:<ol><li><a href='http://www.shayhowe.com/resource/working-with-a-bad-client/' rel='bookmark' title='Permanent Link: Working With A Bad Client'>Working With A Bad Client</a></li>
<li><a href='http://www.shayhowe.com/resource/smart-email-marketing/' rel='bookmark' title='Permanent Link: Smart Email Marketing'>Smart Email Marketing</a></li>
<li><a href='http://www.shayhowe.com/web-design/tips-for-designing-a-non-profit-website/' rel='bookmark' title='Permanent Link: Designing A Non-Profit Website'>Designing A Non-Profit Website</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h1><a href="/tutorial/iphone-picture-messaging/">Sending Picture Messages with the iPhone</a></h1>

<img  class="top-rt" src="http://www.shayhowe.com/wp-content/themes/letscounthedays/articles/iphone-pic-msg/photo.jpg" alt="iPhone Picture Messaging" />

<p>It is amazing that with all of this technology and all of the advancements with cell phones over the past few years that the iPhone still does not have the capability to send picture messages. That is until now. The way it works is most mobile carriers offer free email to SMS/MMS gateways which forward email messages to phones. Therefore when you send an email from your iPhone to an email address specifically related to the recipients phone the email will be displayed on their phone as a picture or text message.</p>

<p>So how do you figure out what email corresponds to each phone? All you need to know is the person's cell phone number and carrier they are on. From here you will set up an email to be sent to [10-digit phone number]@[carrier gateway address]. Please refer to the table below for a listing major US carriers free email to SMS/MMS gateways.</p><span id="more-282"></span>


<table width="100%" cellpadding="6" cellspacing="6"><tr>
<td width="40%"><strong>Carrier</strong></td><td width="60%"><strong>Corresponding Email</strong></td>
</tr><tr>
<td>Alltel</td><td>1234567890@message.alltel.com</td>
</tr><tr>
<td valign="top">AT&amp;T (formerly Cingular)</td><td>1234567890@txt.att.net<br />1234567890@mms.att.net (MMS)<br />1234567890@cingularme.com</td>
</tr><tr>
<td>Boost Mobile</td><td>1234567890@myboostmobile.com</td>
</tr><tr>
<td>Nextel (now Sprint Nextel)</td><td>1234567890@messaging.nextel.com</td>
</tr><tr>
<td valign="top">Sprint PCS (now Sprint Nextel)</td><td>1234567890@messaging.sprintpcs.com<br />1234567890@pm.sprint.com (MMS)</td>
</tr><tr>
<td>T-Mobile</td><td>1234567890@tmomail.net</td>
</tr><tr>
<td valign="top">US Cellular</td><td>1234567890email.uscc.net (SMS)<br />1234567890@mms.uscc.net (MMS)</td>
</tr><tr>
<td valign="top">Verizon</td><td>1234567890@vtext.com<br />1234567890@vzwpix.com (MMS)</td>
</tr><tr>
<td>Virgin Mobile USA</td><td>1234567890@vmobl.com</td>
</tr></table>

<h3>For international and smaller US gateways please refer to:</h3>

<ul>
<li><a href="http://www.tech-faq.com/send-text-messages-free.shtml" rel="nofollow" target="_blank">Tech FAQ</a></li>
<li><a href="http://www.mutube.com/projects/open-email-to-sms/gateway-list/" rel="nofollow" target="_blank">Mutube</a></li>
</ul>

<p>Related posts:<ol><li><a href='http://www.shayhowe.com/resource/working-with-a-bad-client/' rel='bookmark' title='Permanent Link: Working With A Bad Client'>Working With A Bad Client</a></li>
<li><a href='http://www.shayhowe.com/resource/smart-email-marketing/' rel='bookmark' title='Permanent Link: Smart Email Marketing'>Smart Email Marketing</a></li>
<li><a href='http://www.shayhowe.com/web-design/tips-for-designing-a-non-profit-website/' rel='bookmark' title='Permanent Link: Designing A Non-Profit Website'>Designing A Non-Profit Website</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.shayhowe.com/iphone/iphone-picture-messaging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
