<?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>Final Elements Studio LLC &#124; Digital Creative Agency</title>
	<atom:link href="http://www.finalelements.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.finalelements.com</link>
	<description>Down to the last pixel</description>
	<lastBuildDate>Wed, 09 Nov 2011 02:55:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Google Plus Company Page Has Landed</title>
		<link>http://www.finalelements.com/published/google-plus-company-page-has-landed/</link>
		<comments>http://www.finalelements.com/published/google-plus-company-page-has-landed/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 22:25:05 +0000</pubDate>
		<dc:creator>Anthony Fabrizio</dc:creator>
				<category><![CDATA[Published]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://www.finalelements.com/?p=499</guid>
		<description><![CDATA[Google has finally unveiled brand pages for Google+, allowing businesses and brands to join Google’s social network. So why not create a company page for our self. Add us to your circle.]]></description>
			<content:encoded><![CDATA[<p>Google has finally unveiled brand pages for Google+, allowing businesses and brands to join Google’s social network. So why not create a company page for our self. <a href="https://plus.google.com/117516793402602903511">Add us to your circle.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.finalelements.com/published/google-plus-company-page-has-landed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Build A Website For The IPhone</title>
		<link>http://www.finalelements.com/case-study/how-to-build-a-website-for-the-iphone/</link>
		<comments>http://www.finalelements.com/case-study/how-to-build-a-website-for-the-iphone/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 20:38:07 +0000</pubDate>
		<dc:creator>Anthony Fabrizio</dc:creator>
				<category><![CDATA[Case Study]]></category>
		<category><![CDATA[Insight]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.finalelements.com/?p=428</guid>
		<description><![CDATA[Everywhere you look you see people playing on their smart phones. Where it is checking their Facebook, writing their latest tweet, or even checking out near by restaurants.  By creating a mobile website it makes it easier for viewers to view your website without all that annoying scrolling. You can get your message across with [...]]]></description>
			<content:encoded><![CDATA[<p>Everywhere you look you see people playing on their smart phones. Where it is checking their Facebook, writing their latest tweet, or even checking out near by restaurants.  By creating a mobile website it makes it easier for viewers to view your website without all that annoying scrolling. You can get your message across with only one page.</p>
<p><span id="more-428"></span></p>
<p>As we promised we created this tutorial on how to create a mobile website from beginning to end. Using Photoshop to create our layout and bringing it into Dreamweaver to create the magic. We will cover how to detect if the user is using an iPhone to view your page as well as the orientation of the device – whether it be landscape or portrait. To accomplish this we will be using javascript, and some Safari mobile specific CSS tags.</p>
<p>To make this easy, I have provided a <strong><a href="http://www.finalelements.com/wp-content/themes/rebirth/download/Mobile Website.zip" target="_blank">mobile template</a></strong> for you to download, which means that all we will have to do is set up redirects for mobile browsers. You can customize the template landing page however you see fit – it’s just standard HTML/CSS. Or you can follow bellow to see how this is done.</p>
<h1>Step 1: Getting Started</h1>
<p>We’re first going to start off with creating the PSD file that fits the design for your site. The size we are using is 320 x 626px( standard iPhone size is 320 x 480px. Height can change to whatever size you want. Just keep in mind the higher the number the more scrolling is involved)</p>
<p><img class="alignnone size-full wp-image-432" title="step1" src="http://www.finalelements.com/wp-content/uploads/2011/10/step1.jpg" alt="" width="590" height="217" /></p>
<p>Now we create the look and feel of the site.You can create any look and feel you like. But for this tutorial we are using the contact page for our mobile website.</p>
<p><img class="alignnone size-full wp-image-435" title="step2" src="http://www.finalelements.com/wp-content/uploads/2011/10/step2.jpg" alt="" width="590" height="217" /></p>
<p>Now this is the last step in Photoshop. Slice or crop out all our main elements that we want to bring into Dreamweaver ( or any HTML editor you like). I prefer to crop my images so I have better control over what I want to save.</p>
<p><img class="alignnone size-full wp-image-436" title="step3" src="http://www.finalelements.com/wp-content/uploads/2011/10/step3.jpg" alt="" width="590" height="217" /></p>
<h1>Step 2: The HTML</h1>
<p>We will start working on the iPhone HTML page; the code below has some key differences from a regular XHTML transitional document.</p>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Final Elements Studio&lt;/title&gt;
&lt;meta name=&quot;author&quot; content=&quot;Final Elements&quot; /&gt;
&lt;meta name=&quot;copyright&quot; content=&quot;copyright 2011 www.finalelements.com&quot; /&gt;
&lt;meta name=&quot;description&quot; content=&quot;Final Elements Studio&quot; /&gt;
&lt;meta name = &quot;viewport&quot; content = &quot;width = device-width&quot;&gt;
&lt;meta name = &quot;viewport&quot; content = &quot;initial-scale = 1.0&quot;&gt;

&lt;link rel=&quot;apple-touch-icon&quot; href=&quot;images/myiphone_ico.png&quot;/&gt;
&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;iphone.css&quot;);&lt;/style&gt;
&lt;/head&gt;
</pre>
<p><strong>The code above explained line by line:</strong></p>
<p>Line 1 – 7: This is standard HTML5 Transitional Doctype.</p>
<p>Line 8 -9 This line is the iphone specific. It sets initial values for the viewport in the device’s browser.</p>
<ul>
<li> Width= states the width of the page to be the same width of the device</li>
<li> Initial = maximum scale set the starting point for the zoom of the page</li>
</ul>
<p>Line 11  is for creating webclip icons when you bookmark a site. The image should be 57px by 57px in .png format. You do not need to add the shine or corners as the iPhone will do that for you.</p>
<p>Line 12: Standard CSS function</p>
<h1>Step 3: Laying Out The Divs</h1>
<p>We now continue with the rest of the html before we add any javascript functions. Code the site the same way you do with a website.</p>
<pre class="brush: php; title: ; notranslate">&lt;/pre&gt;
&lt;div id=&quot;page_wrapper&quot;&gt;&lt;header&gt;
&lt;h1&gt;Final Elements Studio | Digital Creative Agency&lt;/h1&gt;
&lt;div id=&quot;logo&quot;&gt;
&lt;h2&gt;&lt;a href=&quot;index.html&quot;&gt;Final Elements Studio&lt;/a&gt;&lt;/h2&gt;
&lt;/div&gt;
&lt;/header&gt;&lt;nav id=&quot;mainNav&quot;&gt; &lt;!--
&lt;ul&gt;
	&lt;li&gt; Nav will go here&lt;/li&gt;
&lt;/ul&gt;
    --&gt;
&lt;/nav&gt;
&lt;div id=&quot;bodyWrapper&quot;&gt;&lt;article&gt;We are a digital creative agency located in Long Island, New York. We strive to find creative solutions for our clients while pushing the envelope on what technology can do. Our work includes website design, print design, logo development, and helping our clients market themselves online.&lt;/article&gt;&lt;nav class=&quot;contactPanel&quot;&gt;
&lt;ul&gt;
	&lt;li class=&quot;call&quot;&gt;&lt;a href=&quot;tel:15167921426&quot;&gt;Call&lt;/a&gt;&lt;/li&gt;
	&lt;li class=&quot;email&quot;&gt;&lt;a href=&quot;mailto:info@finalelements.com&quot;&gt;Email&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/nav&gt;&lt;/div&gt;
&lt;footer&gt;&lt;img src=&quot;images/slogin.png&quot; alt=&quot;&quot; width=&quot;294&quot; height=&quot;56&quot; /&gt;
&lt;div id=&quot;copyright&quot;&gt;© 2011 Final Elements Studio, LLC&lt;/div&gt;
&lt;nav id=&quot;footerNav&quot;&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a class=&quot;full-site&quot; href=&quot;http://finalelements.com/&quot;&gt;Continue to Full Site&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/nav&gt;&lt;/footer&gt;&lt;/div&gt;
&lt;pre&gt;
</pre>
<h1>Step 3: Clickable Phone Number</h1>
<p>First, most handheld devices include a phone, so let’s make our phone numbers clickable</p>
<p>On line 16  <span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;">&lt;li class=&#8221;call&#8221;&gt;&lt;a href=&#8221;tel:15167921426&#8243;&gt;Call&lt;/a&gt;&lt;/li&gt;</span></p>
<p>Now mobile users can click this number to call it, however there are a few things to note. First, the number in the actual link starts with a 1 which is important since the web is international (1 is the US country code).</p>
<p>Second, this link is clickable whether or not the user has a mobile device. Since we’re not using the server-side method, our best option is to simply hide the fact that the number is clickable via CSS. So use the <code>call</code> class to disable the link styling in your screen stylesheet, and then include it again for mobile.</p>
<h1>Step 4: The CSS</h1>
<p>The CSS is very important in switching the content. Using classes and ID&#8217;s we can make sure that only the correct content is being displayed. First though, we need to set up the page so that none of the iPhone&#8217;s default styles will interfere.</p>
<pre class="brush: css; title: ; notranslate">
/*-----------------------------
RESET STYLES
-----------------------------*/

html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6{
	margin:0;
	padding:0;
	-webkit-text-size-adjust:none; /* This stops the iPhone from automatically changing the size of the text when you flip the phone */
	background:#000 url(images/bg.png) repeat;
}
body{
	font-size: 10px;
}
body[orient=&quot;portrait&quot;] {
property: value;
}
body[orient=&quot;landscape&quot;] {
property: value;
}
ul, li, ol, dl, dd, dt{
	list-style:none;
	padding:0;
	margin:0;
	}
a{
	text-decoration:none;
	}

/*-----------------------------
	SITE SPECIFIC STYLES
-----------------------------*/

body{
	background:#000;
	font-family: Helvetica; /* Helvetica is on the iPhone already, so you may as well take advantage */
	color:#999;
	}
p{
	font-size:12px;
	padding-bottom:8px;
	}
a{
	color:#E30000;
	text-decoration:none;
	}

/*-----------------------------
	HEADINGS
-----------------------------*/

h1{
	display:block;
	width:112px;
	height:41px;
	background-image:url(images/logo.gif);
	text-indent:-5000px;
	}

/*-----------------------------
	BASIC LAYOUT
-----------------------------*/

#page_wrapper{
	padding-top:0px;
	overflow:auto;
	width:320px;
	}
header{
	background:url(images/headerBg.png) repeat-x;
	height:74px;

}
header h1{
	display:block;
	width:181px;
	height:54px;
	background:url(images/finalElements.png) no-repeat;
	text-indent:-5000px;
	float:right;
	margin-top:10px;
	margin-right:20px;
}
#logo{
	background:#E30000;
	width:98px;
	height:89px;
	position:absolute;
	z-index:4px;
}
#logo h2 a{
	display:block;
	width:98px;
	height:89px;
	background:url(images/logo.png) #E30000 no-repeat;
	text-indent:-5000px;
}
#banner{
	background:url(images/banner.png) no-repeat;
	width:320px;
	height:154px;
	border-bottom:3px solid #E30000;
}
nav#mainNav{
	background:url(images/navBg.png) no-repeat;
	width:320px;
	height:49px;
}
nav#mainNav li{
	float:left;
	padding-top:10px;
}

.home a{
	background:url(images/home.png) no-repeat;
	width:79px;
	height:27px;
	display:block;
	text-indent:-5000px;
	padding-left:20px;
}
.about a{
	background:url(images/about.png) no-repeat;
	width:104px;
	height:27px;
	display:block;
	text-indent:-5000px;
	padding-left:20px;
}
.contact a{
	background:url(images/contact.png) no-repeat;
	width:94px;
	height:27px;
	display:block;
	text-indent:-5000px;
}
#bodyWrapper{
	padding:5px;
}
article{
	padding:10px 10px 0px 10px;
}
article h2{
	background:url(images/services.png) no-repeat;
	width:294px;
	height:37px;
	display:block;
	text-indent:-5000px;
	margin-top:10px;
}
article h3{
	background:url(images/social.png) no-repeat;
	width:294px;
	height:37px;
	display:block;
	text-indent:-5000px;
	margin-top:10px;
}
article li{
	padding:10px;
	border-bottom:1px solid #FFF;
	font-size:14px;

}
nav.contactPanel{
	padding:10px 10px 0px 10px;
}
nav.contactPanel li{
	float:left;
	padding-top:5px;
}
.call a{
	background:url(images/callus.png) no-repeat;
	width:134px;
	height:39px;
	text-indent:-5000px;
	display:block;
	padding-left:10px;

}
.email a{
	background:url(images/email.png) no-repeat;
	width:134px;
	height:39px;
	text-indent:-5000px;
	display:block;

}
footer{
	padding:10px 0px 0px 0px;
}
footer img{
	padding-top:20px;
	padding-left:10px;
}
#copyright{
	text-align:center;
	padding-bottom:10px;
}
nav#footerNav {
	background:url(images/footerbg.png) no-repeat;
	height:33px;
}
nav#footerNav li{
	float:left;
	display:block;
	padding-left:20px;
	padding-top:10px;
	text-align:center;
}
#social {
	margin-bottom:20px;
}
#social ul{
	display:block;
}
#social li a{
	float:left;
	display:block;
	margin-bottom:20px;
}
.facebook a{
	background:url(images/facebook.png) no-repeat;
	width:74px;
	height:55px;
	text-indent:-5000px;
}
.twitter a{
	background:url(images/twitter.png) no-repeat;
	width:77px;
	height:55px;
	text-indent:-5000px;
}
.flickr a{
	background:url(images/flickr.png) no-repeat;
	width:88px;
	height:55px;
	text-indent:-5000px;
}
.digg a{
	background:url(images/digg.png) no-repeat;
	width:70px;
	height:55px;
	text-indent:-5000px;
}
</pre>
<h1>Step 4: The Javascript</h1>
<p>The following javascript detects and sets the iPhone’s viewport orientation by evaluating the innerWidth property of the window object and setting the orient attribute of the body element at regular intervals:</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;// &lt;![CDATA[
		var updateLayout = function() {
  if (window.innerWidth != currentWidth) {
    currentWidth = window.innerWidth;
    var orient = (currentWidth == 320) ? &quot;profile&quot; : &quot;landscape&quot;;
    document.body.setAttribute(&quot;orient&quot;, orient);
    window.scrollTo(0, 1);
  }
};
&lt;script type=&quot;text/javascript&quot;&gt;
iPhone.DomLoad(updateLayout);
setInterval(updateLayout, 500);

// ]]&gt;&lt;/script&gt;
</pre>
<p>Currentwidth ==320 sets the size of the website allowing Safari to stretch the site if it is displayed in portrait or landscape.</p>
<h1>Step 6: The Removing the toolbar in Safari</h1>
<pre class="brush: php; title: ; notranslate">
iPhone.DomLoad(updateLayout);
setInterval(updateLayout, 500);

&lt;script type=&quot;text/javascript&quot;&gt;// &lt;![CDATA[
addEventListener(&quot;load&quot;, function() { setTimeout(hideURLbar, 0); }, false);

function hideURLbar(){
window.scrollTo(0,1);
}
// ]]&gt;&lt;/script&gt;
</pre>
<p>Now to make this work we need to add a function into the &lt;body&gt; tag.</p>
<pre class="brush: php; title: ; notranslate">
&lt;body onLoad=&quot;setTimeout(function() { window.scrollTo(0, 1) }, 100);&quot;&gt;
</pre>
<h1>Step 7: Setting it all up</h1>
<p>Now the last part which has two steps. Creating the sub folder and redirecting the main site to the mobile site. First create the sub folder and name it m (stand for mobile, a lot of company use this folder name for redirecting). From here we place all our files that we created for the iphone website (images, js, and html).</p>
<p>Now to make the mobile website work we have to tell our website to redirect. By doing so we will need to add a JavaScript code to the index of your original site. JavaScript file can be downloaded <a href="http://www.finalelements.com/wp-content/themes/rebirth/download/redirection_mobile.min.js" target="_blank">here</a>.</p>
<pre class="brush: php; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot; src=&quot;js/redirection_mobile.min.js&quot;&gt;&lt;/script&gt;&lt;script type=&quot;text/javascript&quot;&gt;// &lt;![CDATA[
SA.redirection_mobile ({param:&quot;isDefault&quot;, mobile_prefix : &quot;m&quot;, cookie_hours : &quot;1&quot; });
// ]]&gt;&lt;/script&gt;
</pre>
<p>Line 3 redirects the site to the mobile sub folder, here we called our folder &#8220;m&#8221;. This means when the iPhone loads up your website it automatically redirects it to m.domainname.com ( for us m.finalelements.com).</p>
<h1>Step 8: Conclusion</h1>
<p>As the worldwide shift to mobile continues, handheld device support will become increasingly important. Hopefully this article has left you with both the desire and toolset necessary to make mobile support a reality in your websites.</p>
<p>Although mobile occupies a significant chunk of global web browsing, the technology is still very much in its infancy. Just as standards emerged for desktop browsing, new standards are emerging to unify mobile browsers. This means that the techniques described in this article are only temporary, and it is your responsibility to stay on top of this ever-changing technology.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.finalelements.com/case-study/how-to-build-a-website-for-the-iphone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CSS Downunder Monthly Winner</title>
		<link>http://www.finalelements.com/featured/css-downunder-monthly-winner/</link>
		<comments>http://www.finalelements.com/featured/css-downunder-monthly-winner/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 23:15:18 +0000</pubDate>
		<dc:creator>Anthony Fabrizio</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Awards]]></category>

		<guid isPermaLink="false">http://www.finalelements.com/?p=414</guid>
		<description><![CDATA[CSS Downunder is a website design gallery for web designers in Australia and around the globe to showcase their best work. It is also a place to come for inspiration for both experienced designers and newbies that are looking to see what web design trends are doing in Australia. The CSS Downunder gallery showcases only [...]]]></description>
			<content:encoded><![CDATA[<p>CSS Downunder is a website design gallery for web designers in Australia and around the globe to showcase their best work. It is also a place to come for inspiration for both experienced designers and newbies that are looking to see what web design trends are doing in Australia. The CSS Downunder gallery showcases only the best CSS based websites plus outstanding Flash based sites that are worthy of a mention.</p>
<p><span id="more-414"></span></p>
<p>Thank you for picking us to be best of the month..</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.finalelements.com/featured/css-downunder-monthly-winner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thank You Steve</title>
		<link>http://www.finalelements.com/resources/thank-you-steve/</link>
		<comments>http://www.finalelements.com/resources/thank-you-steve/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 23:30:38 +0000</pubDate>
		<dc:creator>Anthony Fabrizio</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Insight]]></category>

		<guid isPermaLink="false">http://www.finalelements.com/?p=418</guid>
		<description><![CDATA[The one thing to say about Steve &#8211; Like him or not &#8211; He was a visionary, a perfectionist but most importantly &#8211; BOLD. He was bold enough to make tough decisions, to make game changing ideas come to life, take business chances on new technologies like NeXT and Pixar and inspire. Today is a [...]]]></description>
			<content:encoded><![CDATA[<p>The one thing to say about Steve &#8211; Like him or not &#8211; He was a visionary, a perfectionist but most importantly &#8211; BOLD. He was bold enough to make tough decisions, to make game changing ideas come to life, take business chances on new technologies like NeXT and Pixar and inspire.</p>
<p><span id="more-418"></span></p>
<p>Today is a sad day not only for the technology world but also for the world at large.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.finalelements.com/resources/thank-you-steve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launched Our New Mobile Website</title>
		<link>http://www.finalelements.com/design/launched-our-new-mobile-website/</link>
		<comments>http://www.finalelements.com/design/launched-our-new-mobile-website/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 15:18:31 +0000</pubDate>
		<dc:creator>Anthony Fabrizio</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Idea]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.finalelements.com/?p=389</guid>
		<description><![CDATA[Today is the day we finally launched our mobile website. After many hours of creating our new site, it was time for the mobile one. So grab your iPhone and check it out! We will be posting our first tutorial on how to create a mobile website from start to finish. Keep an eye out [...]]]></description>
			<content:encoded><![CDATA[<p>Today is the day we finally launched our mobile website. After many hours of creating our new site, it was time for the mobile one. So grab your iPhone and check it out!</p>
<p><span id="more-389"></span></p>
<p>We will be posting our first tutorial on how to create a mobile website from start to finish. Keep an eye out on your Twitter or Facebook pages for the release.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.finalelements.com/design/launched-our-new-mobile-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

