<?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>PaperStreet &#187; Coding</title>
	<atom:link href="http://www.paperstreet.com/blog/category/coding/feed" rel="self" type="application/rss+xml" />
	<link>http://www.paperstreet.com/blog</link>
	<description>Law Firm Internet Marketing Blog, Web Design Articles</description>
	<lastBuildDate>Wed, 01 Feb 2012 17:22:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>HTML and You: The Basics for Your Law Firm Website</title>
		<link>http://www.paperstreet.com/blog/4028</link>
		<comments>http://www.paperstreet.com/blog/4028#comments</comments>
		<pubDate>Mon, 07 Nov 2011 17:51:21 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[basic html]]></category>
		<category><![CDATA[html guide]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=4028</guid>
		<description><![CDATA[Hyper Text Markup Language, better known as HTML, is the main language of the web. From bolding text to adding images to your website, HTML can be very helpful and will allow you to do this and do this.]]></description>
			<content:encoded><![CDATA[<p>Hyper Text Markup Language, better known as HTML, is the main language of the web. From bolding text to adding images to your website, HTML can be very helpful and will allow you to <strong>do this</strong> and <em>do this</em>.</p>
<p><a href="http://www.paperstreet.com/blog/wp-content/uploads/2011/11/Untitled-1.jpg"><img src="http://www.paperstreet.com/blog/wp-content/uploads/2011/11/Untitled-1.jpg" alt="html-image.jpg" width="314" height="262" align="right" hspace="12" /></a>HTML is a markup language, which means you can style and alter the text on a page by surrounding the element in containers called tags. For example, if we want to bold text, we can add the &lt;strong&gt; tag around the text.</p>
<p>&lt;strong&gt;<strong>Bold Text</strong>&lt;/strong&gt;</p>
<p>By surrounding the text with the open and close &lt;strong&gt; tags, we&#8217;re able to strengthen the font. The close tag is the same as the open tag in most cases, but with a forward slash. The three parts of our bold HTML element are:</p>
<ol>
<li>&lt;strong&gt; &#8211; I&#8217;m open!</li>
<li>Bold Text &#8211; I&#8217;m being marked up!</li>
<li>&lt;/strong&gt; &#8211; I&#8217;m closed!</li>
</ol>
<p>If we want to italicize the text, we can use the &lt;em&gt; tag that emphasizes our text. Just as we did with &lt;strong&gt;, we&#8217;re going to 1) open the &lt;em&gt; tag, 2) add the text we&#8217;d like italicized and 3) close our &lt;em&gt; tag with a forward slash. Our final result would be:</p>
<p>&lt;em&gt;<em>Italicized Text</em>&lt;/em&gt;</p>
<p>We can even take things to the next level with bold and italicize on the same text!</p>
<p>&lt;strong&gt;&lt;em&gt;<strong><em>Strong and Italicized Text</em></strong>&lt;/em&gt;&lt;/strong&gt;</p>
<h2>Other useful tags include:</h2>
<table width="100%" border="1">
<tbody>
<tr>
<th>Tag</th>
<th>Example</th>
</tr>
<tr>
<td>&lt;h1&gt;</td>
<td>&lt;h1&gt;My Main Headline&lt;/h1&gt;</td>
</tr>
<tr>
<td colspan="2">The &lt;h1&gt; tag is used to display the main headline of your article or website.</td>
</tr>
<tr>
<td>&lt;h2&gt;</td>
<td>&lt;h2&gt;My Sub Headline&lt;/h2&gt;</td>
</tr>
<tr>
<td colspan="2">The &lt;h2&gt; tag relates to subheadings, which are slightly smaller than your main headline.</td>
</tr>
<tr>
<td>&lt;p&gt;</td>
<td>&lt;p&gt;A paragraph of text with one sentence.&lt;/p&gt;<br />
&lt;p&gt;A second paragraph of text. This time with two sentences.&lt;/p&gt;</td>
</tr>
<tr>
<td colspan="2">All text on a page that is not part of a headline or a list goes in paragraph tags. The &lt;p&gt; tag also provides for proper spacing with margins above and below the paragraph.</td>
</tr>
<tr>
<td>&lt;br /&gt;</td>
<td>&lt;p&gt;This is line 1&lt;br /&gt;<br />
This is line 2&lt;/p&gt;</td>
</tr>
<tr>
<td colspan="2">The &lt;br /&gt; tag is used to skip to the next line similar to a return break. Unlike the previous tags, the &lt;br /&gt; tag is one of a few tags that closes itself. You&#8217;ll notice the forward slash right before the closing arrow.</td>
</tr>
<tr>
<td>&lt;img&gt;</td>
<td>&lt;img src=&#8221;http://www.paperstreet.com/images/layout/logo.jpg&#8221; alt=&#8221;PaperStreet logo&#8221; /&gt;</td>
</tr>
<tr>
<td colspan="2">Just like the &lt;br /&gt; tag, the &lt;img&gt; tag closes itself with a forward slash at the end. Unlike the other tags, &lt;img&gt; has attributes that point to an image location or provide a title. SRC, or image source, tells the &lt;img&gt; tag where to look for the image file on your website. The ALT attribute provides alternative text that shows up when the image SRC is not found and also gives blind users a description of the picture.</td>
</tr>
</tbody>
</table>
<p>For more information on HTML and a great reference for other tags, check out <a href="http://w3schools.com/html/default.asp" target="_blank">W3Schools</a> or contact us at 954.523.2181 for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/4028/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freelance Back-End Web Developer: Coding Machine</title>
		<link>http://www.paperstreet.com/blog/3855</link>
		<comments>http://www.paperstreet.com/blog/3855#comments</comments>
		<pubDate>Wed, 31 Aug 2011 15:06:13 +0000</pubDate>
		<dc:creator>Peter Boyd</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PaperStreet]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[careers]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Web Developer]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=3855</guid>
		<description><![CDATA[Are you a web development coding machine? If you know PHP, MySQL, jQuery, and love clean, commented, organized code, then we would be a good match. The web developer will work on predominantly on PHP, MySQL, and JavaScript libraries for&#8230;]]></description>
			<content:encoded><![CDATA[<p>Are you a web development coding machine? If you know PHP, MySQL, jQuery, and love clean, commented, organized code, then we would be a good match.</p>
<p>The web developer will work on predominantly on PHP, MySQL, and JavaScript libraries for select e-commerce and custom application websites. You will also need to know CSS &amp; HTML to complete upgrades to those websites, but mostly it is PHP and MySQL.</p>
<p><strong>About PaperStreet</strong><br />
PaperStreet creates new web sites and revitalizes aging ones. Located in downtown Fort Lauderdale, we have designed over 600 custom web sites in the past ten years. Clients love our designs as we impress and get results. Check us out online at <a href="../../">http://www.paperstreet.com</a>.</p>
<p><strong>You must know:</strong></p>
<p>- PHP<br />
- MySQL<br />
- JavaScript (jQuery and other libraries)<br />
- CSS3 and CSS2 too<br />
- HTML and HTML5<br />
- How to Meet deadlines<br />
- CodeIgnitor Framework</p>
<p><strong>Knowledge of this will be helpful:</strong></p>
<p>- WordPress &amp; Content Management<br />
- Search Engine Optimization (SEO)<br />
- Adobe Creative Suite</p>
<p><strong>Position Type:<br />
</strong>Freelance – Set projects with dedicated amount of hours per project and budgets.</p>
<p><strong>Salary Range:<br />
</strong>Please send us your hourly rates and requirements.</p>
<p><strong>How to Apply:<br />
</strong>You must do the following to apply.<br />
1. Email us at careers [at] paperstreet.com with the subject:  Back-End Freelance Web Developer + Your Name<br />
2. Include in the actual email a few paragraphs about yourself. Be yourself, be unique and to the point.<br />
3. Include a link to your portfolio in the email. We want to be able to click on links.<br />
4. Attach your resume in PDF format.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/3855/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freelance Front-End Web Developer: Slicer &amp; Dicer</title>
		<link>http://www.paperstreet.com/blog/3852</link>
		<comments>http://www.paperstreet.com/blog/3852#comments</comments>
		<pubDate>Wed, 31 Aug 2011 15:04:57 +0000</pubDate>
		<dc:creator>Peter Boyd</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PaperStreet]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dice]]></category>
		<category><![CDATA[freelance web developer]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[slice]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=3852</guid>
		<description><![CDATA[Are you a CSS slicing ninja? Can you turn a Photoshop concept into a fully working website?  If you know CSS3, HTML5, jQuery, and love web standards, then we would be a good match. At PaperStreet you will work on&#8230;]]></description>
			<content:encoded><![CDATA[<p>Are you a CSS slicing ninja? Can you turn a Photoshop concept into a fully working website?  If you know CSS3, HTML5, jQuery, and love web standards, then we would be a good match.</p>
<p>At PaperStreet you will work on front-end development, slicing and dicing websites to make our award winning designs go live.  We will give you very detailed Photoshop concepts, and you will hopefully give us back a fully working website, ready for content insertion.</p>
<p><strong>About PaperStreet</strong><br />
PaperStreet creates new web sites and revitalizes aging ones. Located in downtown Fort Lauderdale, we have designed over 600 custom web sites in the past ten years. Clients love our designs as we impress and get results. Check us out online at <a href="../../">http://www.paperstreet.com</a>.</p>
<p><strong>You must know:</strong><br />
- CSS3 and CSS2 too<br />
- HTML / xHTML / HTML5<br />
- jQuery and other JavaScript Libraries<br />
- How to Meet deadlines</p>
<p><strong>Knowledge of this will be helpful:</strong><br />
- Adobe Creative Suite (Dreamweaver &amp; Photoshop)<br />
- Content Management Systems (WordPress, will train on our Total Control)</p>
<p><strong>Position Type:</strong><br />
Freelance – Set projects with dedicated amount of hours per project and budgets.</p>
<p><strong>Salary Range:<br />
</strong>Please send us your hourly rates and requirements.</p>
<p><strong>How to Apply:<br />
</strong>You must do the following to apply.<br />
1. Email us at careers [at] paperstreet.com with the subject: Front-End Freelance Web Developer + Your Name<br />
2. Include in the actual email a few paragraphs about yourself. Be yourself, be unique and to the point.<br />
3. Include a link to your portfolio in the email. We want to be able to click on links.<br />
4. Attach your resume in PDF format.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/3852/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Analytics Impact on the Browser Wars</title>
		<link>http://www.paperstreet.com/blog/3818</link>
		<comments>http://www.paperstreet.com/blog/3818#comments</comments>
		<pubDate>Fri, 19 Aug 2011 17:32:54 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[google analytics]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=3818</guid>
		<description><![CDATA[<p>When  designing a website for your law firm or business, you want to make sure it  looks good and functions well, no matter what sort of Internet browser your  clients are viewing it in. But how do you know which browsers are the most  important and most commonly used by your potential customers? Google Analytics  can help. 
  </p>]]></description>
			<content:encoded><![CDATA[<p>When designing a website for your law firm or business, you want to make sure it looks good and functions well, no matter what sort of Internet browser your clients are viewing it in. But how do you know which browsers are the most important and most commonly used by your potential customers? Google Analytics can help.</p>
<p><a href="http://www.google.com/intl/en/analytics/" target="_blank">Google Analytics</a> is a free tool that provides webmasters with detailed <a href="http://www.paperstreet.com/blog/3750" target="_blank">information about each aspect</a> of their website visitors. One area you can track is browsers. Browser statistics will help you make design decisions and also determine whether it’s worth the investment to install snazzy technological features.</p>
<p>For instance, in the example website below, 36% of users are using Firefox, while only 21% use Internet Explorer. You may even see other browsers and platforms such as PlayStation 3 or BlackBerry phones. Also of note is that the Safari browser is used 12% of the time, more than doubling the national average of 5%, which means you&#8217;ll want the site to look perfect in Apple&#8217;s browser.</p>
<p><a href="http://www.paperstreet.com/blog/wp-content/uploads/2011/08/Untitled.png"><img class="alignnone size-full wp-image-3821" title="Untitled" src="http://www.paperstreet.com/blog/wp-content/uploads/2011/08/Untitled.png" alt="" width="604" height="274" /></a></p>
<p>Going a step further, Google Analytics even tracks the browser version. Of the 36% of visitors who use Firefox in the above example, over 60% of them are on the latest version: 5.0.1. Interesting to note is that about 20% of those visitors are a couple versions behind on 3.6.</p>
<p><strong>Why is This Info Important?</strong></p>
<p>What&#8217;s important to know about browser versions is that just like automobiles and cell phones, the newer the product, the better the performance and the nicer things will display. A BMW released in 2011 will drive faster and handle better than a 2001 Toyota, despite them both having four tires. Web browsers work in the same way with Internet Explorer 6 being the Toyota and Firefox 5 being the BMW, despite them both having scrollbars and back buttons.</p>
<p>Using the example above, if we analyze Internet Explorer&#8217;s 21%, we&#8217;ll notice that over 65% of IE users are a version behind on 8. With IE 6 only accumulating 25 visits per month, or less than 1% of total traffic, it would not be time efficient or cost effective to tweak a massive drop-down menu that uses all the latest web standards and CSS3. On the same lines, if over 20% of your traffic is using Internet Explorer 6, then it&#8217;s clear that the menu system needs to function even if a deprecated one is used.</p>
<p>These numbers prove why browser testing is crucial when developing a new website. When building a website using the latest version of Firefox, only 1/5th of the site&#8217;s visitors will see the website as intended. Browser testing needs to be done on every browser and on <em>at least</em> the last three versions.</p>
<p>PaperStreet always incorporates browser testing into its custom web design process, ensuring that whatever browser your clients and potential customers use, the look and function will stay consistent and professional.</p>
<p>For more info, check out this info-graphic that illustrates the <a href="http://www.paperstreet.com/blog/3636" target="_blank">market percentage of each internet browser</a> worldwide.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/3818/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing Your Web Site Content in One Easy Program</title>
		<link>http://www.paperstreet.com/blog/3451</link>
		<comments>http://www.paperstreet.com/blog/3451#comments</comments>
		<pubDate>Tue, 17 May 2011 03:41:13 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[LawFirm-Content.com]]></category>
		<category><![CDATA[Print]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=3451</guid>
		<description><![CDATA[A Content Management System, or CMS for short, is exactly what the name implies - an easy-to-use online system for adding, editing and deleting content from your website. There are several CMS options available, with the most widely used one being Wordpress. PaperStreet also offers Total Control, a CMS tailored specifically for law firms. ]]></description>
			<content:encoded><![CDATA[<p>A Content Management System, or CMS for short, is exactly what the name implies &#8211; an easy-to-use online system for adding, editing and deleting content from your website. There are several CMS options available, with the most widely used one being WordPress. PaperStreet also offers Total Control, a CMS tailored specifically for law firms. With your newly redesigned website at PaperStreet, we also include Total Control or WordPress so you’ll be able to edit your website’s pages just as you would edit a Word document.</p>
<p><strong>Total Control</strong></p>
<p>Total Control has gone through several revisions since being developed by PaperStreet and currently operates under our newest server. Any site using Total Control will be hosted at PaperStreet, which also means nightly backups to our servers and excellent support. As mentioned earlier, Total Control is designed primarily for lawyers with specific sections for practice areas, seminars, offices, cases, news and more. Also, if you need a custom add-on, we can create it for you and customize Total Control to suit your needs.</p>
<p><strong>WordPress</strong></p>
<p>First released in 2003, WordPress is currently on version 3.1.1 and has been downloaded over 30 million times. Several major websites are based off WordPress with custom themes and colors disguising the standard WordPress design. A main component of WordPress sites are plugins, which, simply put, are user-developed applications created primarily for one task. For example, a great plugin we use at PaperStreet is the All-In-One SEO Pack, designed to make SEO tags easy to update. With a very large community, a plugin has been developed for nearly everything from database backups to contact forms.</p>
<p>Overall, both Content Management Systems are very useful and make updating the text on your page as simple as possible. As a developer at PaperStreet, I work with both systems on a daily basis and would recommend both. WordPress takes some customizing and will require more input at the start to set up local backups and attorney fields. On the other hand, Total Control will be easy right out of the box, but doesn’t have thousands of pre-built plugins. In the end, both allow for easy updating and will make your life easier.</p>
<p>For a brief demo of Total Control, please <a href="../../content-management-systems/">visit our Content Management section</a> to learn more. More information about WordPress can be <a href="http://www.wordpress.org/">found at the official website</a>. Also, don’t hesitate to <a href="../../contact/">contact PaperStreet</a> and we’ll fill you in on all the details.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/3451/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Architecture Considerations When Redesigning Your Web Site</title>
		<link>http://www.paperstreet.com/blog/3242</link>
		<comments>http://www.paperstreet.com/blog/3242#comments</comments>
		<pubDate>Tue, 19 Apr 2011 04:19:35 +0000</pubDate>
		<dc:creator>Peter Boyd</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Web Site Design]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=3242</guid>
		<description><![CDATA[We redesign web sites quite frequently.  Here are the architectural rules we follow when producing new sites for our own company and our clients.]]></description>
			<content:encoded><![CDATA[<p>We redesign web sites quite frequently. Here are the architectural rules we follow when producing new sites for our own company and our clients:</p>
<h2>Site Structure</h2>
<p>When redesigning your site, you should use a pyramid structure.</p>
<p><strong>Large Site:</strong> If you have a large site (100+ pages), organize your content from your home page down and then into categories, sub-categories, and detail pages.</p>
<p><strong>Mid-Size Site:</strong> For sites of say 10 pages to 100 pages, you can organize your content with home page, categories, and detail pages under those.</p>
<p><strong>Small Site:</strong> If you have a really small site of less than 10 pages, just do home page and then detail pages all in the same hierarchy.</p>
<p>From an SEO perspective, the pyramid structure helps pass down &#8220;link juice&#8221; from your home page to the most important categories pages.Moreover, from a user perspective, it helps define to your audience what the most important categories are, and then indicate their detail pages.</p>
<h2>301 Redirects</h2>
<p>When redesigning your web site, it is a MUST that you redirect any old page names to their new versions.Your pages have most likely been indexed by search engines and linked to from other web sites.</p>
<p>If you do not redirect users, they will ultimately hit your dreaded 404 error page or your home page. This simply stinks and does not help the user or search engines.</p>
<p>By redirecting them to the appropriate page, this will help your website visitors actually find the new pages. Moreover, it will help pass any existing link juice for SEO purposes to those new pages. This will help them rank as high as the previous page, perhaps even more if you have updated the code, title tags, copy and internal linking of your new web site.</p>
<p>Yes, writing 301 redirects takes time. You need to plan them out and test. But it will benefit your site overall.</p>
<h2>URLs</h2>
<p>When redesigning your web site, you should consider having your URLs as close as possible to your root domain. This means that you want to keep your pages from being under sub-sub-sub or sub-sub directories.</p>
<ul>
<li>Good:&#8221;  <a href="http://www.yourdomainname.com/your-practice-area/">www.yourdomainname.com/your-practice-area/</a></li>
<li>Bad: <a href="http://www.yourdomainname.com/practice/subpractice/practice-name">www.yourdomainname.com/practice/subpractice/practice-name</a></li>
</ul>
<p>It&#8217;s simpler to have a short URL and search engines seem to prefer URLs that are closer to the root of the domain.</p>
<h2>Page Names</h2>
<p>You should also consider very descriptive page names.</p>
<ul>
<li>Good: <a href="http://www.yourdomainname.com/your-practice-area">www.yourdomainname.com/your-practice-area</a></li>
<li>Bad:&#8221;  <a href="http://www.yourdomainname.com/?id=456">www.yourdomainname.com?id=456</a></li>
</ul>
<p>This helps users remember your content and is great for search engines, too, as they record all the keyword-rich text associated with your page name, or even links to that page from other sites.</p>
<h2>Domain Names</h2>
<p>If you have a great domain, stick with it. If your domain stinks, then now is a great time to change. Simply 301 redirect the entire old domain over to the new on site launch. What is a good domain or bad domain?&#8221;  Check out our article on how to select a domain.</p>
<ul>
<li>How to Choose a Domain Name for a Law Firm &#8211; Short, Old, .COM, with Keyword Phrase &#8211; <a href="http://www.paperstreet.com/blog/1570">http://www.paperstreet.com/blog/1570</a></li>
</ul>
<h2>Wrap -Up</h2>
<p>If you have any questions, leave a comment or let us know how we can help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/3242/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Website Build Case Study: Designed for Simplicity, Speed</title>
		<link>http://www.paperstreet.com/blog/3102</link>
		<comments>http://www.paperstreet.com/blog/3102#comments</comments>
		<pubDate>Tue, 22 Mar 2011 19:00:20 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[LawFirmMobileDesign.com]]></category>
		<category><![CDATA[Web Site Design]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=3102</guid>
		<description><![CDATA[The most recent mobile site I created at PaperStreet was the handheld version of "Decide To Drive," a website that aims to increase awareness of distracted driving dangers. The main site was built through Wordpress and came out great, with visitors being able to submit their observations of people behind the wheel.]]></description>
			<content:encoded><![CDATA[<p>The most recent mobile site I created at PaperStreet was the handheld version of &#8220;Decide To Drive,&#8221; a website that aims to increase awareness of distracted driving dangers. The main site was built through WordPress and came out great, with visitors being able to submit their observations of people behind the wheel. The mobile site ties into the main campaign and keeps the same clear message of safe driving.</p>
<div style="width: 270px; float: left; text-align: center;"><img class="alignnone size-full wp-image-3103" style="float: left;" title="1" src="http://www.paperstreet.com/blog/wp-content/uploads/2011/03/1.jpg" alt="" width="267" height="161" /><br />
Full Website</div>
<div style="width: 210px; float: right; text-align: center;"><img class="alignnone size-full wp-image-3104" style="float: left;" title="2" src="http://www.paperstreet.com/blog/wp-content/uploads/2011/03/2.jpg" alt="" width="210" height="210" /><br />
Mobile Website</div>
<p><br style="clear: both;" /></p>
<p>As you can see from the two screenshots above, the mobile site opens up with a warning message meant to ensure visitors are not distracted drivers. Being on a mobile phone also means limiting graphics and website functionality in favor of speed and load times. The full site features a large map listing each observation submitted thus far, which will take a few minutes to load over 3G and your phone provider&#8217;s network. Leaving out the large background image is another feature that will improve the mobile site&#8217;s performance.</p>
<p><img class="alignnone size-full wp-image-3107" style="float: left; margin-right: 10px;" title="phone" src="http://www.paperstreet.com/blog/wp-content/uploads/2011/03/phone-3asdf.jpg" alt="" width="150" height="251" />Once the warning message on the mobile website is accepted, the visitor is greeted with a friendlier page and navigation buttons (seen to the left). A good mobile site will sustain the important details from the full site, while condensing the layout for a smaller screen. By providing buttons large enough to be clicked by a finger, the visitor can easily navigate the mobile site and view reports, just as they would on the full site.</p>
<p>The layout of a mobile site should keep the same look and feel as the full website with similar colors and button styles. Keeping the main logo at the top of the site with a call to action will catch the visitor&#8217;s attention and give them a direct first step.</p>
<p>While browsing the mobile site, you&#8217;ll notice only the home page has the large navigation. Because the buttons take up so much real estate on a mobile browser, it&#8217;s common practice to add a &#8220;Back to Home&#8221; button on sub-pages. This skips the user right to the content, such as on the view reports page (seen to the right). Another best practice is to have your content in expand/collapse sections. Having some brief sentences with a &#8220;read more&#8221; button, which allows visitors to view your site&#8217;s full content, will keep visitors from being overwhelmed by a large amount of text.</p>
<p><img class="alignnone size-full wp-image-3109" style="float: right; margin-left: 10px;" title="4" src="http://www.paperstreet.com/blog/wp-content/uploads/2011/03/4-asdf.jpg" alt="" width="207" height="345" />Regarding the view reports page, there are some key differences between the mobile and full sites. On the full website, visitors are able to search reports by location and browse the &#8220;worst offenders,&#8221; which can be voted on. The voting functionality remains on the mobile site, but the search features have been removed. The mobile website is for quick information at a glance, so listing only the most recent reports is the best way to go. Visitors won&#8217;t be spending hours on a mobile site carefully studying an article and looking for news archives to learn more.</p>
<p>The main points to take from this blog post are as follows:</p>
<ul>
<li>Mobile websites and full version sites have some similarities between content and color schemes but differ greatly in presentation and purpose;</li>
<li>Mobile websites can be thought of as summaries of a full website, complete with content, graphics, and features, but still able to provide valued information; and</li>
<li>A mobile website needs to go through the full process with a new design, new purpose and new target audience to focus on.</li>
</ul>
<p>For a closer look, be sure to visit Decide To Drive on a <a href="http://www.decidetodrive.org/">full-sized screen</a> and a <a href="http://www.decidetodrive.org/">cell phone</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/3102/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Rid Outlook of Evil Blue Underlined Links in your Email Campaigns</title>
		<link>http://www.paperstreet.com/blog/3052</link>
		<comments>http://www.paperstreet.com/blog/3052#comments</comments>
		<pubDate>Wed, 09 Mar 2011 14:37:02 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Rants & Raves]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=3052</guid>
		<description><![CDATA[While designing an HTML email template here at PaperStreet, I came across an annoying little issue dealing specifically with the way my links were showing.]]></description>
			<content:encoded><![CDATA[<p>While designing an HTML email template here at PaperStreet, I came across an annoying little issue dealing specifically with the way my links were showing.</p>
<p>The issue was happening in Outlook, which was applying default blue underlines to all my links, even though each link had been manually styled differently. After fiddling around with a few techniques, I still wasn&#8217;t able to get my link styles to show up correctly in Outlook.</p>
<p>After further investigation, it became apparent that Outlook&#8217;s style sheet was overriding my own style sheet. The solution then became quite simple:</p>
<p>Add the !important; declaration to all the affected link styles to give them priority over Outlooks.</p>
<p>After applying the !important; declaration, the ugly default blue underlined links had vanished for good.</p>
<p>So the next time you run into a similar issue while working with any of your HTML email templates, try using !important declaration.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/3052/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Quickstart Tutorial for New Editors</title>
		<link>http://www.paperstreet.com/blog/3040</link>
		<comments>http://www.paperstreet.com/blog/3040#comments</comments>
		<pubDate>Mon, 07 Mar 2011 16:44:09 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Web Site Design]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=3040</guid>
		<description><![CDATA[If you're new to Wordpress, do not fret; the admin interface is intuitive and easy to learn. Read more...]]></description>
			<content:encoded><![CDATA[<p>With each successive update, the WordPress platform is improving its usability as a content management system (CMS). The latest update (3.1), makes linking to existing pages in your site easier, and it hides some advanced options. Because WordPress is so flexible and geared toward tech-savvy users, there are still a lot of available options when you log in to your WordPress admin area. If you&#8217;re new to WordPress, do not fret; the admin interface is intuitive and easy to learn.</p>
<h2>Logging in to WordPress</h2>
<p>If you are already logged in, the following URL will take you to the admin dashboard. Otherwise, you will be prompted to enter your username and password. Replace YOURDOMAIN with your actual domain name: <strong>http://www.YOURDOMAIN.com/wp-admin/</strong></p>
<p><em>If only the blog portion of your site is in WordPress, then you will need to add /wp-admin/ after the URL of your blog. If you are a PaperStreet client, this information will be provided to you in your launch email: <strong>http://www.YOURDOMAIN.com/YourBlogName/wp-admin/</strong></em></p>
<h2>How to Edit Your Content</h2>
<h3>Page Content</h3>
<p><img class="alignnone size-full wp-image-3041" title="pages" src="/blog/wp-content/uploads/2011/03/pages.jpg" style="float: left; margin-bottom: 15px;" alt="" width="155" height="200" />Once you log in to WordPress, you will be presented with the dashboard. To modify the content of the site, you only need to worry about a few sections on the navigation bar to the left. The pages on your site are housed under &#8220;<strong>Pages.</strong>&#8220;</p>
<p>If you click that section, you&#8217;ll see your website&#8217;s site structure. Dashes denote that a page is a sub-page of the one above. Click on whichever page you would like to edit. On the &#8220;<strong>Edit Page&#8221;</strong> screen, you can edit your text in the text editor. If you only see two rows of icons, click the last button &#8220;Show/Hide Kitchen Sink.&#8221;</p>
<p><img class="alignnone size-full wp-image-3042" title="quickstart_sink" src="http://www.paperstreet.com/blog/wp-content/uploads/2011/03/quickstart_sink.jpg" alt="" width="500" height="60" /></p>
<p>If you would like certain text to be headings, you can select the text and change the format from paragraph to Heading 2 or Heading 3. Depending on the design of your site, heading 1 may be reserved only for the heading at the very top of the page. Click the big blue &#8220;<strong>Update</strong>&#8221; button, and you&#8217;re done.</p>
<p>To add a new page, click &#8220;<strong>Add New</strong>&#8221; on the side navigation or pages listing, then insert your page title and content. If your page should be underneath an existing section, then you will need to change the parent page. On the right side of the page, under publish, is Page Attributes. Here you can select the Parent page from a list of all pages on your site.</p>
<p><img class="alignnone size-full wp-image-3043" title="page-attributes" src="http://www.paperstreet.com/blog/wp-content/uploads/2011/03/page-attributes.jpg" alt="" width="295" height="146" /></p>
<p>Templates in WordPress allow different sections of your site to have more than one layout. In our typical WordPress site, the Template option will stay as the &#8220;Default Template&#8221; for general pages. If it&#8217;s a practice area page, or attorney/staff bio page, then you may need to change to the appropriately named template.</p>
<h3>Blog Content</h3>
<p>If your site has a blog section, then this is edited through &#8220; &#8221;<strong>Posts&#8221;</strong> on the left side navigation. Editing and adding posts is basically the same as working with pages, with the addition of an excerpt, categories, and tags. The excerpt is typically used to display the very beginning of your post (or a short summary) on the main blog page, with a Read More link that takes you to the full post.</p>
<p>Categories are like a table of contents for the posts in your blog. You&#8217;ll be able to see them listed on your blog landing page. They are used to organize posts into main sections, and they will help visitors find content related to what they want to read about. Choose at least one category for your post. Tags are used to add additional keyword/topics to your posts. I recommend keeping the number of tags low, in order to not have search engines index an excessive amount of pages with similar content. I like to use around 2 to 4 tags.</p>
<h2>Additional Custom Features For Editing Your Site</h2>
<p>Every WordPress build is a little different. If PaperStreet built your site, then any instructions for custom functionality should be provided. You may see one or more of the following while logged in:</p>
<h3>Editable Areas / Custom Post Types</h3>
<p>On the left main navigation, you may see other post types underneath &#8220;Comments&#8221; and above &#8220;Appearance.&#8221; Adding or editing these works the same as pages. If you see a link titled &#8220;Editable Areas,&#8221; this contains information that is repeated throughout the site, such as footer links, text in the header/logo area, or sidebar information. There may be other custom post types, such as news.</p>
<h3>Custom Fields &#8211; Using Verve Meta Boxes</h3>
<p><img class="alignnone size-full wp-image-3044" title="verve_meta" src="/blog/wp-content/uploads/2011/03/verve_meta2.jpg" style="float: right; margin-bottom: 10px;" alt="" width="275" height="242" />When editing or adding a page, you might see fields like these underneath the main content editor. They are used for custom file uploads, images, vcards, email addresses, sidebar information, thumbnails, and more.</p>
<h3 style="clear: both;"><strong>Tabs on a Single page &#8211; Using Page.ly MultiEdit</strong></h3>
<p><img class="alignnone size-full wp-image-3045" title="tabs" src="http://www.paperstreet.com/blog/wp-content/uploads/2011/03/tabs.jpg" alt="" width="500" height="60" /></p>
<p>You may also see multiple tabs at the top while editing a page. Paperstreet sometimes uses this on attorney/staff bios. <strong>This allows you to edit all of the different sections individually, such as practices, quotes, photo, etc.</strong><strong> </strong></p>
<h3><strong>WordPress Design and Support</strong></h3>
<p>If you are an existing client and need additional WordPress support, give us a call or email the development team via helpme (at) paperstreet.com. If you are interested in us <a href="/content-management-systems/">building your site in WordPress or another content management system</a>, then please fill out our <a href="/contact/">contact form</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/3040/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Reduce Load Times: Increasing the Speed of Your Website</title>
		<link>http://www.paperstreet.com/blog/2970</link>
		<comments>http://www.paperstreet.com/blog/2970#comments</comments>
		<pubDate>Mon, 14 Feb 2011 14:15:13 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Web Site Design]]></category>

		<guid isPermaLink="false">http://www.paperstreet.com/blog/?p=2970</guid>
		<description><![CDATA[In today's world of instant gratification, a web site's speed can be a very important quality that affects your clients and your conversion rates. Read how to optimize your site for speed.]]></description>
			<content:encoded><![CDATA[<p>In today&#8217;s world of instant gratification, a website&#8217;s speed can be a very important quality that affects your clients and your conversion rates. Whether it&#8217;s broadband Internet, 3G wireless or dial-up from the &#8220;90s, website visitors have always had to deal with load times. Waiting for a graphic or feature-intensive website to load can lead some visitors to leave your site before they start clicking around.</p>
<p>Some businesses and law firms don&#8217;t even realize they have a problem. Perhaps your Search Engine Optimization (SEO) campaign is going great with visitors seeing your site at the top of Google. They&#8217;re clicking on the top search result and viewing your website, but nobody is calling for a free consultation. The issue could be the load time of your site.</p>
<h2>Why Some Websites Load Slowly: Too Many Elements</h2>
<p>A website is made up of many elements: CSS, images, HTML, javascript/jquery, flash elements and other specialized features. Each of these elements has a size to it, from 1 kb up to 1,000 kb (also called 1 MB). When you visit a website, your browser will download these elements to your computer and display them as a webpage. For example, if you have a rotating image slider on the home page, this could be the breakdown to load that single slider:</p>
<ul>
<li>5 Images (60kb each) = 300kb</li>
<li>Jquery library (Used to run Jquery script) = 70kb</li>
<li>Jquery script (Used to create slider) = 20kb</li>
<li>CSS (Used to style slider) = 10kb</li>
</ul>
<p>So, that one slider on your homepage could be up to 400kb!</p>
<h2>How to Know if Your Website Loads Slow: Calculating Web Site Speed</h2>
<p>By using the <a href="http://www.ibeast.com/content/tools/band-calc.asp">Bandwidth Calculator</a>, we&#8217;ll find out that the slider will take 58 seconds to load on a dial-up connection and five seconds on a broadband connection. Five seconds doesn&#8217;t seem like a long time, but remember, this is only for the image slider and not the entire website. The entire website could be up to 800kb, which means 10 seconds, and waiting 10 seconds for one website to load is quite a long time.</p>
<h2>How do I speed up my website?</h2>
<p>The simple answer is to remove large elements that take a long time to download. In our example, reducing the image slider to three images will remove 120kb and bring your size to 280kb, which knocks off two seconds from broadband and 18 seconds from dial-up. If you remove the image slider all together and just use one image, the total size goes down to 60kb, or about half a second.</p>
<p>If your home page has a lot of sections, perhaps placing some of them on a separate page is the way to go. Other tools, such as <a href="http://www.smushit.com/ysmush.it/">Yahoo&#8217;s image compression tool SmushIt</a>, shrink image sizes while maintaining quality. PaperStreet always tries to implement these tools within each website we build. Of course, the best way for a fast load time is to load as few things as possible, such as Google.com, with its white background and one image.</p>
<p>If you visit your website and have to wait more than five seconds, contact PaperStreet for a consultation today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.paperstreet.com/blog/2970/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

