<?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>For Your Lungs Only &#187; web accessiblity</title>
	<atom:link href="http://www.foryourlungsonly.net/category/web-accessiblity/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.foryourlungsonly.net</link>
	<description>Everything you wanted to know about web development, espresso, typography, nicotine, user interface design, whiskey, javascript, php, cascading style sheets, css hacks, beer, prototype, jquery, mysql, usability and accessiblity (but were afraid to ask)</description>
	<lastBuildDate>Mon, 14 Jun 2010 22:08:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CL, CSS Navigation and How to Waste an Afternoon</title>
		<link>http://www.foryourlungsonly.net/2007/05/31/cl-css-navigation-and-how-to-waste-an-afternoon/</link>
		<comments>http://www.foryourlungsonly.net/2007/05/31/cl-css-navigation-and-how-to-waste-an-afternoon/#comments</comments>
		<pubDate>Thu, 31 May 2007 21:22:23 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[cl rnr]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web accessiblity]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/words/2007/05/31/cl-css-navigation-and-how-to-waste-an-afternoon/</guid>
		<description><![CDATA[Finished my workload by 10am so I have been putting around net killing time. This of course means I have been obsessively reading Craigslist. Here are some of my favorite findings for the day: An open letter to the Anaheimer who posted on Ottawa R&#38;R I spilled grandma on you around spadian station To my [...]]]></description>
			<content:encoded><![CDATA[<p> Finished my workload by 10am so I have been putting around  net killing time. This of course means I have been obsessively reading <a href="http://www.craigslist.org">Craigslist</a>. Here are some of my favorite findings for the day:</p>
<ul>
<li><a href="http://www.craigslist.org/about/best/orc/337453333.html">An open letter to the Anaheimer who posted on Ottawa R&amp;R</a></li>
<li><a href="http://www.craigslist.org/about/best/tor/291325470.html" target="_blank">I spilled grandma on you around spadian station</a></li>
<li><a href="http://www.craigslist.org/about/best/sea/333295779.html">To my Ex-GF&#8217;s Cat</a></li>
</ul>
<p>Pushed out two comps one I played around with floating left the navigation at different heights and floating right an accessible search right under the navigation. There&#8217;s even room to add image replacement for hover effects on the navbar but I&#8217;m pretty sure the more traditional layout will win out with the client. So have at it and <a href="http://sabatinos.geekchicinc.com/layout-01.html">view the one I played with that won&#8217;t be chosen</a>. Also, <a href="http://sabatinos.geekchicinc.com/layout-02.html">here is the standard layout that I haven&#8217;t coded yet</a> as it&#8217;s fairly straight forward.</p>
<p>If you are having any CSS issues feel free to contact me and I might help you out and write something about the issue/solution on here. I was debating writing something about floats, clears, alignment, fluid layouts and lucky charms. The last bit there means I need lunch or a big bag of marshmallows.</p>
<p><a href="http://technorati.com/claim/yrgspqe63j" rel="me">Technorati Profile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2007/05/31/cl-css-navigation-and-how-to-waste-an-afternoon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>skip to content</title>
		<link>http://www.foryourlungsonly.net/2007/04/29/skip-to-content/</link>
		<comments>http://www.foryourlungsonly.net/2007/04/29/skip-to-content/#comments</comments>
		<pubDate>Sun, 29 Apr 2007 21:26:30 +0000</pubDate>
		<dc:creator>Jonathan Harriot</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web accessiblity]]></category>

		<guid isPermaLink="false">http://www.foryourlungsonly.net/words/2007/04/29/skip-to-content/</guid>
		<description><![CDATA[Amy asked for my assistance in creating a compliant &#8220;skip to content&#8221; bar for a project we are currently working on. So I decided to make it a bit more styled and pretty. eventually I may even make the skip to content fade in. Here it goes: the css a#skipAhead { display: inline; position:absolute; top:0; [...]]]></description>
			<content:encoded><![CDATA[<p>Amy asked for my assistance in creating a compliant &#8220;skip to content&#8221; bar for a project we are currently working on. So I decided to make it a bit more styled and pretty. eventually I may even make the skip to content fade in.</p>
<p>Here it goes:</p>
<h3>the css</h3>
<pre><code>a#skipAhead {
	display: inline; position:absolute; top:0; left:0;
	width:10%; z-index:1000;
	filter:alpha(opacity=0); -moz-opacity:0.0; opacity:0.0;
}
/* accesibility for skipper aka skipAhead from comments by
patrick h. lauke aka redux@splintered.co.uk */
a#skipAhead:focus,a#skipAhead:hover,a#skipAhead:active {
	filter:alpha(opacity=0.85); -moz-opacity:0.85; opacity:0.85;
	border-bottom:1px solid #023845; border-right:1px solid #023845; background:#0E4E70;
	color:#fff; font-weight: bold; text-align: center; padding: 5px;
}
</code></pre>
<h3>the html</h3>
<pre><code>
[a href="#yourMom" title="Skip to the content" id="skipAhead"]skip to content[/a]

[a name="yourMom" title="yourMom"][/a]
</code></pre>
<h3>some info</h3>
<p>by placing the triggering anchor tag right after the body tag as this is a feature for accessibility we allow the user to skip flashy navigation and other page elements and  get to the guts of the page.</p>
<h3>updated</h3>
<p>Many thanks to Patrick H. Lauke</p>
]]></content:encoded>
			<wfw:commentRss>http://www.foryourlungsonly.net/2007/04/29/skip-to-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.266 seconds -->
