<?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>WYSIWIP &#187; accessibility</title>
	<atom:link href="http://zakimirza.com/blog/tag/accessibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://zakimirza.com/blog</link>
	<description>What You See is Work In Progress</description>
	<lastBuildDate>Wed, 04 Apr 2012 03:46:03 +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>Quick Firefox fix for dotted border on links</title>
		<link>http://zakimirza.com/blog/quick-firefox-fix-for-dotted-border-on-links/</link>
		<comments>http://zakimirza.com/blog/quick-firefox-fix-for-dotted-border-on-links/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 01:06:22 +0000</pubDate>
		<dc:creator>Zaki</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://zakimirza.com/blog/quick-firefox-fix-for-dotted-border-on-links/</guid>
		<description><![CDATA[When using the Phark -9999px method for image replacements you should use one of the fixes for the border outline in order to solve the border problem on your designs. However these fixes are not all that widely used. Here is a way to use either of these fixes across all the websites that you [...]]]></description>
			<content:encoded><![CDATA[	<p>When using the Phark <a href="http://zakimirza.com/blog/image-replacement-using-text-indent/" title"image replacement with CSS">-9999px</a> method for image replacements you should use one of the fixes for the border outline in order to solve the border problem on your designs. However these fixes are not all that widely used. Here is a way to use either of these fixes across all the websites that you browse using Firefox user style sheets.</p>
	<p>In order to make Firefox behave a certain way for all websites that you visit you have to either edit the default user style sheet or the Firefox config file.</p>
	<p><strong>Mac users:</strong> navigate to {user}/Library/Application Support/Firefox/Profiles/Chrome{your user profile}<br />
<strong>PC users:</strong> navigate to C:\Program Files\Mozilla Firefox\defaults\profile\chrome</p>
	<p>and open the file userContent-examples.css and add either one of the solutions into the CSS file and save as userContent.css<br />
Disable the border:</p>
	<pre>
<code>a {
    outline: none;
}</code></pre>
	<p>Tidy up the border:</p>
	<pre>
<code>a {
    overflow: hidden;
}</code></pre>
	<p>There is also a way to get rid of the outline border by editing the Firefox config file (keep in mind this will remove the border completely) </p>
	<p>1. Type “about:config” in Firefox’s location bar<br />
2. Find the string: <strong>browser.display.focus_ring_width</strong><br />
3. Set the value to 0</p>
	<p>Now Firefox will behave as you want across all websites you visit. Gotta love user based style sheets.<script type="text/javascript">(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http%3A%2F%2Fzakimirza.com%2Fblog%2Fquick-firefox-fix-for-dotted-border-on-links%2F"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://zakimirza.com/blog/quick-firefox-fix-for-dotted-border-on-links/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Get rid of dotted border from links</title>
		<link>http://zakimirza.com/blog/get-rid-of-dotted-border-from-links/</link>
		<comments>http://zakimirza.com/blog/get-rid-of-dotted-border-from-links/#comments</comments>
		<pubDate>Fri, 23 Nov 2007 02:39:08 +0000</pubDate>
		<dc:creator>Zaki</dc:creator>
				<category><![CDATA[XHTML/CSS]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[solutions]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://zakimirza.com/blog/get-rid-of-dotted-border-from-links/</guid>
		<description><![CDATA[We&#8217;ve all seen how Firefox will add a dotted border on any links are clicked. When coupled with the Phark technique, Firefox extends that dotted border to include your extremely indented text. However there are three different solutions to this: Getting rid of the dotted border completely Stopping the border from stretching Editing the Firefox [...]]]></description>
			<content:encoded><![CDATA[	<p>We&#8217;ve all seen how Firefox will add a dotted border on any links are clicked. When coupled with the Phark technique, Firefox extends that dotted border to include your extremely indented text. However there are three different solutions to this:</p>
	<ol>
	<li>Getting rid of the dotted border completely</li>
	<li>Stopping the border from stretching</li>
	<li>Editing the Firefox default user style sheet to do solution 1 or two for all websites you visit</li>
	</ol>
	<p>The first solution will essentially turn of the border completely leaving no outline</p>
	<pre>
<code>a {
    outline: none;
}</code></pre>
	<p>before:<br />
<img src="http://zakimirza.com/blog/wp-content/uploads/2007/11/longoutline.png" alt="long dotted border around image" /></p>
	<p>After:<br />
<img src="http://zakimirza.com/blog/wp-content/uploads/2007/11/nooutline.png" alt="no dotted outline on image" /></p>
	<p>The second solution will keep the border nice and tidy with your image.</p>
	<pre>
<code>a {
    overflow: hidden;
}</code></pre>
	<p>Before:<br />
<img src="http://zakimirza.com/blog/wp-content/uploads/2007/11/longoutline.png" alt="long dotted border around image" /></p>
	<p>After:<br />
<img src="http://zakimirza.com/blog/wp-content/uploads/2007/11/smalloutline.png" alt="Tidy dotted outline border" /></p>
	<p>Lastly if you&#8217;re annoyed by the border as much as I am, there are two ways to perform either one of these solutions using the Firefox user style sheet.</p>
	<p>But we&#8217;ll save that for the next entry.<script type="text/javascript">(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http%3A%2F%2Fzakimirza.com%2Fblog%2Fget-rid-of-dotted-border-from-links%2F"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://zakimirza.com/blog/get-rid-of-dotted-border-from-links/feed/</wfw:commentRss>
		<slash:comments>48</slash:comments>
		</item>
		<item>
		<title>AIR Houston 2007 meets Kids Meals Houston</title>
		<link>http://zakimirza.com/blog/air-houston-meets-kids-meals-houston/</link>
		<comments>http://zakimirza.com/blog/air-houston-meets-kids-meals-houston/#comments</comments>
		<pubDate>Sun, 04 Nov 2007 05:24:19 +0000</pubDate>
		<dc:creator>Zaki</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[XHTML/CSS]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://zakimirza.com/blog/air-houston-meets-kids-meals-houston/</guid>
		<description><![CDATA[Today was Go day. 8 hours and one incredibly accessible website. About a month or so ago the TopSpot crew got commissioned to participate in the AIR Houston competition. The competition consisted of creating a fully accessible website for a non-profit organization in 8 hours. Our NPO was Kids Meals Houston. Essentially they are like [...]]]></description>
			<content:encoded><![CDATA[	<p>Today was Go day. 8 hours and one incredibly accessible website.</p>
	<p>About a month or so ago the TopSpot crew got commissioned to participate in the <a href="http://www.knowbility.org/air-houston/" title="Air Houston Website">AIR Houston</a> competition.  The competition consisted of creating a fully accessible website for a non-profit organization in 8 hours. Our NPO was <a href="http://www.kidsmealshouston.com/" title="Kids Meal Houston website" target="_blank">Kids Meals Houston</a>. Essentially they are like Meals on Wheels but focus on local Harris County children that live in poverty and are hungry. These kids know what it means to be hungry and Kids Meals provides them with lunches on a daily bases. Our NPO representative Ruth, was just amazing. She provided us with everything we needed to build the site as well as moral support day of the competition. She came with Pom-Poms&#8230; yes Pom-Poms and it was really great to see her so excited about the website.<br />
<span id="more-28"></span><br />
The Accessibility Internet Rally (AIR) is an award-winning,  Web site building competition held annually around the country by <a href="http://www.knowbility.org/main/?content=home" title="Knowbility home page">Knowbility</a>, a place where you can learn how and why to    make technology accessible to everyone &#8211; including people with disabilities.   . In the competition teams compete against one another and showcase their talents with the most accessible website they can create in 8 hours, valid XHTML Strict 1.0 and CSS of course.<br />
<img src="http://farm3.static.flickr.com/2072/1851510061_03571de41b.jpg?v=0" title="Group shot of everyone at AIR-Houston" alt="Group shot of everyone at AIR-Houston" height="375" width="500" /><br />
It all started today at 9 am at UH. We had are design sliced out and started to code away. After some FTP problems with Godaddy we decided to host it ourselves and then we had really taken off. Each of us started to code away at our sections and once the Belafonte had put it all together, we started to populate the pages with content and get rid of bugs and quirks of all the major browsers.<br />
<img src="http://farm3.static.flickr.com/2157/1850844761_1d944afc2f.jpg?v=0" title="TopSpot Team at AIR-Houston" alt="TopSpot Team at AIR-Houston" height="375" width="500" /><br />
Quite an interesting day. It was a great learning experience for all of us and Kids Meals got a website they can be proud of. <strike>I will link to it, soon as it is migrated off the development server and on to theirs.</strike> Check out the <a href="http://www.kidsmealshouston.com/" title="Kids Meal Houston website">Kids Meals Houston</a> website now live and running. Speaking of learning I decided to give the input check boxes a width and height in ems and now they resize when the text size is increased. A simple thing yet overlooked when creating a standard website.<br />
<img src="http://farm3.static.flickr.com/2044/1843730303_118b8a5ea8.jpg?v=0" title="Zak and Aaron" alt="Zak and Aaron" height="333" width="500" /></p>
	<p>Our NPO rep, Ruth was just awesome. Twice and energetic as us and three times as excited, the next picture speaks for itself</p>
	<p><img src="http://zakimirza.com/blog/wp-content/uploads/2007/11/ruth_pom_pom.jpg" alt="Ruth with PomPoms" /></p>
	<p>Looking forward to AIR Houston 2008!<script type="text/javascript">(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http%3A%2F%2Fzakimirza.com%2Fblog%2Fair-houston-meets-kids-meals-houston%2F"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://zakimirza.com/blog/air-houston-meets-kids-meals-houston/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A List Of Things NOT To Do On Your Website</title>
		<link>http://zakimirza.com/blog/a-list-of-things-not-to-do-on-your-website/</link>
		<comments>http://zakimirza.com/blog/a-list-of-things-not-to-do-on-your-website/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 01:20:32 +0000</pubDate>
		<dc:creator>Zaki</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[XHTML/CSS]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[solutions]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://zakimirza.com/blog/a-list-of-things-not-to-do-on-your-website/</guid>
		<description><![CDATA[OK AOL kiddies and other high school webmasters&#8230; today&#8217;s lesson in Webmastering 101 class is a list of things NOT to do on your website. Everything on this list is obvious yet I see it happen all the time. Most of what’s on this list, everyone already knows, however people STILL feel it absolutely necessary [...]]]></description>
			<content:encoded><![CDATA[	<p>OK AOL kiddies and other high school webmasters&#8230; today&#8217;s lesson in Webmastering 101 class is a list of things NOT to do on your website.</p>
	<p>Everything on this list is obvious yet I see it happen all the time. Most of what’s on this list, everyone already knows, however people STILL feel it absolutely necessary to do. This is simply a list of things you should not do on a website. Period.</p>
	<p><strong>Splash pages.</strong> If I have to choose high or low bandwidth before entering your website you&#8217;ve failed. This is 2007. There is no need for splash pages anymore&#8230; personally I don&#8217;t think there ever was. From an SEO standpoint having a splash page can be very hurtful towards your rankings. Search engine spiders will index your splash page instead of your home page and usually a splash page consist of flash or some other form of media such as a picture. The only actual text content on a traditional splash page is the &#8220;skip intro&#8221; link. Users with dial up or even slow broadband will become frustrated after waiting for your page to load up only to find its a splash page and no actual content is on there. You want to make it easy as possible for users to navigate your website, and you want them to do as little work as possible. Having them wait for a splash page and then click &#8220;continue&#8221; goes against this principle.<br />
<span id="more-25"></span><br />
<strong>On going music.</strong> Unless you have a couple of hit albums there is no reason you should be playing music on your website. I&#8217;m usually listening to my own music when I&#8217;m on the computer, the last thing I need is for your website to add its own soundtrack. Music on a site is usually done wrong in the first place. Why is your song restarting each time I go to a new page or refresh the current one? If you&#8217;re going to do something unpleasing at least learn how to do it right so its not that much more unpleasant. Again users on a low bandwidth connection and search engine spiders will come across your site and leave. This is an age of instant gratification especially on the Internet. If you really really want music because it just happens to be your favorite song of the week, please allow the user to stop the song, and don’t do it on page load.</p>
	<p><strong>Multiple video formats</strong> on the web are irrelevant in 2007. How many of you ACTUALLY have real player installed? C&#8217;mon don’t be shy now&#8230; ok 3 of you. Good. How many of you have flash player installed? Oh everyone who&#8217;s ever watched a video on YouTube. Hmmm does that tell you something? Flash has become the default player for delivering video on the web, stop using Real Player, or window media player. Stick with what works best.</p>
	<p><strong>JavaScript Links</strong>. C&#8217;mon people enough I cant stress enough what year it is&#8230; If I can’t right click and open in a new tab/window you&#8217;ve failed. This is a huge usability flaw. Like most web savvy users, I user Firefox, and if I can’t use its built in tab feature then that’s almost as bad as&#8230;</p>
	<p>You <strong>resizing the user&#8217;s browser</strong> how DARE YOU! I am browsing your website with the settings I want. Resizing the users browser is a huge flaw. First of all you don’t need to be doing any more. Who uses 640&#215;480 even 800&#215;600 is out the door. 1024&#215;768 should give you PLENTY of room to design your website without having to launch external content in a new resized browser window. At least put up some sort of notice that says, &#8220;This link will resize your browser&#8221; I wonder how many would actually click then&#8230; that alone should tell you something.</p>
	<p>This will be an on going list. Stay tuned for more!<script type="text/javascript">(function() {var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];s.type = 'text/javascript';s.async = true;s.src = 'http://widgets.digg.com/buttons.js';s1.parentNode.insertBefore(s, s1);})();</script><a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http%3A%2F%2Fzakimirza.com%2Fblog%2Fa-list-of-things-not-to-do-on-your-website%2F"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://zakimirza.com/blog/a-list-of-things-not-to-do-on-your-website/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

