<?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>The Local Wisdom Blog &#187; css</title>
	<atom:link href="http://www.localwisdom.com/blog/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.localwisdom.com/blog</link>
	<description>Local Wisdom Culture, what we are about!</description>
	<lastBuildDate>Fri, 10 Sep 2010 16:34:09 +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>Development Tip: Center Text Vertically using line-height</title>
		<link>http://www.localwisdom.com/blog/2010/03/development-tip-center-text-vertically-using-line-height/</link>
		<comments>http://www.localwisdom.com/blog/2010/03/development-tip-center-text-vertically-using-line-height/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 14:17:42 +0000</pubDate>
		<dc:creator>Melissa Penta</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Ping.fm]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://www.localwisdom.com/blog/?p=3270</guid>
		<description><![CDATA[A very common beginner&#8217;s problem for coders is centering text vertically within a DIV. Lets say you have this HTML &#038; CSS for a button: &#60;style type="text/css"&#62; .button { background-color:#222; color:#fff; height:25px; text-align:center; vertical-align:middle; width:85px; } &#60;/style&#62; &#60;div class="button"&#62;Submit&#60;/div&#62; You&#8217;d think that vertical-align would center the text vertically, but it does not work in a [...]]]></description>
			<content:encoded><![CDATA[<p>A very common beginner&#8217;s problem for coders is centering text vertically within a DIV.</p>
<p>Lets say you have this HTML &#038; CSS for a button:</p>
<pre>
&lt;style type="text/css"&gt;
.button {
	background-color:#222;
	color:#fff;
	height:25px;
	text-align:center;
	vertical-align:middle;
	width:85px;
}
&lt;/style&gt;

&lt;div class="button"&gt;Submit&lt;/div&gt;
</pre>
<p>You&#8217;d <i>think</i> that vertical-align would center the text vertically, but it does not work in a DIV. The typical fix for this is to add padding to the top and/or bottom of the div and hope it looks good in every browser. While this is a legit fix &#8211; and a good one if you <i>do not</i> have a fixed height &#8211; there is an even better one for divs that only have one line of text and a fixed height: using a line-height that equals the height of the div.</p>
<p>Your CSS should look like this &#8211; the important parts are in red:</p>
<pre>
&lt;style type="text/css"&gt;
.button {
	background-color:#222;
	color:#fff;
	<span style="color:#c00;">height:25px;
	line-height:25px;</span>
	text-align:center;
	width:85px;
}
&lt;/style&gt;
</pre>
<p>In the end, your div will look like this:</p>
<style>
.button-example { background-color:#222; color:#fff; height:25px; line-height:25px; margin-bottom:10px; text-align:center; width:85px;
}
</style>
<div class="button-example">Submit</div>
<p>A nice clean, hack-free fix.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.localwisdom.com/blog/2010/03/development-tip-center-text-vertically-using-line-height/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parallax scrolling and Jquery&#8230; salivating aren&#8217;t we?</title>
		<link>http://www.localwisdom.com/blog/2009/06/parallax-scrolling-and-jquery-salivating-arent-we/</link>
		<comments>http://www.localwisdom.com/blog/2009/06/parallax-scrolling-and-jquery-salivating-arent-we/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 01:18:00 +0000</pubDate>
		<dc:creator>Pinaki Kathiari</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.localwisdom.com/blog/2009/06/parallax-scrolling-and-jquery-salivating-arent-we/</guid>
		<description><![CDATA[We&#8217;ve been talking in the office about producing environments as part of the user experience. People explore websites to reach their goal just like we explored worlds in video games to reach the end boss. We&#8217;re realizing that people don&#8217;t want to be online doing work, they want to be online having fun. So lets [...]]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/Ljl-8HrZnpo&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ljl-8HrZnpo&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>We&#8217;ve been talking in the office about producing environments as part of the user experience. People explore websites to reach their goal just like we explored worlds in video games to reach the end boss. We&#8217;re realizing that people don&#8217;t want to be online doing work, they want to be online having fun.</p>
<p>So lets start by making work fun.</p>
<p>Check out <a href="http://webdev.stephband.info/parallax.html">Jparallax</a>, a clever parallax effects in Jquery.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.localwisdom.com/blog/2009/06/parallax-scrolling-and-jquery-salivating-arent-we/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Transition Effects: The art of Showing/Hiding Content</title>
		<link>http://www.localwisdom.com/blog/2009/05/10-transition-effects-the-art-of-showinghiding-content/</link>
		<comments>http://www.localwisdom.com/blog/2009/05/10-transition-effects-the-art-of-showinghiding-content/#comments</comments>
		<pubDate>Thu, 07 May 2009 15:41:00 +0000</pubDate>
		<dc:creator>Michael Alfaro</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[website curation]]></category>

		<guid isPermaLink="false">http://www.localwisdom.com/blog/2009/05/10-transition-effects-the-art-of-showinghiding-content/</guid>
		<description><![CDATA[&#8220;Delivering informative structure is the primary task an interactive user interface should be able to cope with. The more intuitive layout structure is designed, the better users can understand the content. Whatever content you have to present, you can present them in a more interactive &#38; more responsive ways. In this article we’d like to [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Delivering informative structure is the primary task an interactive user interface should be able to cope with. The more intuitive layout structure is designed, the better users can understand the content.
<p>Whatever content you have to present, you can present them in a more interactive &amp; more responsive ways. In this article we’d like to present 10 smart javascript techniques for showing and hiding content using different JS libraries.&#8221;</p>
<p><a href="http://devsnippets.com/article/10-transition-effects-the-art-of-showinghiding-content.html" target="_blank">Whole post here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.localwisdom.com/blog/2009/05/10-transition-effects-the-art-of-showinghiding-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Dirty Little Web Development Tricks</title>
		<link>http://www.localwisdom.com/blog/2009/04/10-dirty-little-web-development-tricks/</link>
		<comments>http://www.localwisdom.com/blog/2009/04/10-dirty-little-web-development-tricks/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 16:00:00 +0000</pubDate>
		<dc:creator>Michael Alfaro</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[website curation]]></category>

		<guid isPermaLink="false">http://www.localwisdom.com/blog/2009/04/10-dirty-little-web-development-tricks/</guid>
		<description><![CDATA[&#8220;We all have them &#8211; little coding tricks and snippets of knowledge that we’ve picked up over years of experimentation and evolution of our processes, that are now part of our regular routine and save us time, gnashing of teeth and allow us to work quickly and efficiently. Here’s some of mine &#8211; perhaps you [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;We all have them &#8211; little coding tricks and snippets of knowledge that we’ve picked up over years of experimentation and evolution of our processes, that are now part of our regular routine and save us time, gnashing of teeth and allow us to work quickly and efficiently. Here’s some of mine &#8211; perhaps you know a few of these already &#8211; I’d be interested in hearing yours in the comments.&#8221;</p>
<p><a href="http://zygote.egg-co.com/10-dirty-little-web-development-tricks/" target="_blank">Read whole article here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.localwisdom.com/blog/2009/04/10-dirty-little-web-development-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>16 Best-Loved Font Bits In Web Design</title>
		<link>http://www.localwisdom.com/blog/2009/03/16-best-loved-font-bits-in-web-design/</link>
		<comments>http://www.localwisdom.com/blog/2009/03/16-best-loved-font-bits-in-web-design/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 03:14:00 +0000</pubDate>
		<dc:creator>Michael Alfaro</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.localwisdom.com/blog/2009/03/16-best-loved-font-bits-in-web-design/</guid>
		<description><![CDATA[Great article about web fonts, found a new respect for them I&#8217;ll summarize here: The first 6 bits of fonts on this list are considered “web-safe” &#8211; they’re supported by all major browsers on any platform. The fonts in the following 2 bits come pre-installed on most but not all systems. The fonts in the [...]]]></description>
			<content:encoded><![CDATA[<p>Great article about web fonts, found a new respect for them <img src='http://www.localwisdom.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I&#8217;ll summarize here:</p>
<p>The first 6 bits of fonts on this list are considered “web-safe” &#8211; they’re supported by all major browsers on any platform. The fonts in the following 2 bits come pre-installed on most but not all systems. The fonts in the last 8 bits are mainly used for decorative purposes, and implemented on the Web as <a href="http://www.mikeindustries.com/sifr/" target="_blank">sIFR</a> or saved as images.</p>
<p>1.  <em>Helvetica, Helvetica Neue, Arial<br />2. </em><em>Verdana<br />3.</em><em> Georgia</em><br /><em>4.</em><em> Trebuchet MS</em><br /><em>5. </em><em>Century Gothic</em><br /><em>6.</em><em> Lucida Sans Unicode, Lucida Grande</em><br /><em>7.</em><em> Palatino</em><br /><em>8.</em><em> Garamond, Baskerville, Caslon</em><br /><em>9. </em><em>Univers Condensed, Linotype Univers</em><br /><em>10. </em><em>Myriad Pro</em><br /><em>11. </em><em>Rockwell</em><br /><em>12. </em><em>Warnock Pro</em><br /><em>13. </em><em>FF DIN</em><br /><em>14. </em><em>Gotham</em><br /><em>15.</em><em> Frutiger</em><br /><em>16. </em><em>Dax Regular</em></p>
<p><a href="http://www.inspirationbit.com/16-best-loved-font-bits-in-web-design/" target="_blank">Read whole article here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.localwisdom.com/blog/2009/03/16-best-loved-font-bits-in-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Web Developer tools</title>
		<link>http://www.localwisdom.com/blog/2009/01/firefox-web-developer-tools/</link>
		<comments>http://www.localwisdom.com/blog/2009/01/firefox-web-developer-tools/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 01:52:00 +0000</pubDate>
		<dc:creator>Michael Alfaro</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[website curation]]></category>

		<guid isPermaLink="false">http://www.localwisdom.com/blog/2009/01/firefox-web-developer-tools/</guid>
		<description><![CDATA[Here&#8217;s some tools we use in house for development: ScreenGrab: https://addons.mozilla.org/en-US/firefox/addon/1146Screengrab saves entire webpages as images.It will save what you can see in the window, the entire page, just a selection, a particular frame&#8230; basically it saves webpages as images.The following little keywords are at the request of those who can&#8217;t remember the name ScreenGrab! [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s some tools we use in house for development:</p>
<p><span style="font-weight: bold;">ScreenGrab:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/1146" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/1146</a><br />Screengrab saves entire webpages as images.<br />It will save what you can see in the window, the entire page, just a selection, a particular frame&#8230; basically it saves webpages as images.<br />The following little keywords are at the request of those who can&#8217;t remember the name ScreenGrab! and want searches to work. It takes screen shots, screenshots &#8211; that is, shots, of web pages.</p>
<p><span style="font-weight: bold;">MeasureIt:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/539" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/539</a><br />Draw out a ruler to get the pixel width and height of any elements on a webpage.</p>
<p><span style="font-weight: bold;">Inline Code Finder for Firebug:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/9641" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/9641</a><br />Inline Code Finder is an add-on to Firebug, to be able to find HTML elements with any of the below issues:<br />* Inline JavaScript events<br />* Inline style<br />* javascript: links<br />Detailed description can be found at <a href="http://www.robertnyman.com/inline-code-finder/">http://www.robertnyman.com/inline-code-finder/</a></p>
<p><span style="font-weight: bold;">YSlow:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/5369" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/5369</a><br />YSlow analyzes web pages and tells you why they&#8217;re slow based on Yahoo&#8217;s rules for high performance web sites.</p>
<p><span style="font-weight: bold;">Pixel Perfect:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/7943" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/7943</a><br />Pixel Perfect is a Firefox/Firebug extension that allows web developers and designers to easily overlay a web composition over top of the developed HTML.<br />* Requires Firebug</p>
<p><span style="font-weight: bold;">ColorZilla 2.0:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/271" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/271</a><br />With ColorZilla you can get a color reading from any point in your browser, quickly adjust this color and paste it into another program. You can Zoom the page you are viewing and measure distances between any two points on the page. The built-in palette browser allows choosing colors from pre-defined color sets and saving the most used colors in custom palettes. DOM spying features allow getting various information about DOM elements quickly and easily. And there&#8217;s more&#8230;</p>
<p><span style="font-weight: bold;">IE Tab:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/1419" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/1419</a><br />This is a great tool for web developers, since you can easily see how your web page displayed in IE with just one click and then switch back to Firefox.</p>
<p><span style="font-weight: bold;">PageDiff 1.3.0:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/4274" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/4274</a><br />Pagediff is a simple page compare application. It helps web developers and designers to see HTML-code(text) differences between web pages.<br />It doesn&#8217;t take original page source. It takes browser generated DOM compliant view source. It omits Doctype declaration and HTML tags.<br />After installation, to use this, one has to<br />1. Right click on a page &amp; select &#8216;Start DIFF&#8217; (this action saves the current page to memory),<br />2. Go to the page which one wants to compare (with the saved one) and<br />3. Right click on the page &amp; select &#8216;Show DIFF&#8217;.</p>
<p><span style="font-weight: bold;">Html Validator:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/249" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/249</a><br />HTML Validator is a Mozilla extension that adds HTML validation inside Firefox and Mozilla. The number of errors of a HTML page is seen on the form of an icon in the status bar when browsing.<br />The extension can validate the HTML sent by the server or the HTML in the memory (after Ajax execution).<br />The details of the errors are seen when looking the HTML source of the page.<br />The extension is based on Tidy and OpenSP (SGML Parser). Both algorithms were originally developed by the Web Consortium W3C. And now extended and improved by a lot of persons. Both algorithms are embedded inside Mozilla/Firefox and makes the validation locally on your machine, without sending HTML to a third party server.<br />Each algorithm has advantages and inconvenients. The program will give you the choice at startup. But mostly,<br />- The SGML parser is the same program than the one running behind validator.w3.org.<br />- Tidy has accessibility check for the 3 levels defined in WAI</p>
<p><span style="font-weight: bold;">Console²:</span> <a href="https://addons.mozilla.org/en-US/firefox/addon/1815" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/1815</a><br />As of Firefox 1.5, the JavaScript Console is used not only for JavaScript errors, but for CSS errors as well. This extension takes this into account by providing a simple possibility to display errors by type.<br />Console² let&#8217;s you display errors filtered by type (Errors, Warnings, Messages), language (JavaScript, CSS, XML) and context (Chrome, Content). Furthermore it provides a simple search box (as seen in the History and Bookmarks sidebars), hiding of duplicates, sidebar optimizations, a customizable toolbar and some more accessibility improvements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.localwisdom.com/blog/2009/01/firefox-web-developer-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS hacks!</title>
		<link>http://www.localwisdom.com/blog/2009/01/css-hacks/</link>
		<comments>http://www.localwisdom.com/blog/2009/01/css-hacks/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 17:24:00 +0000</pubDate>
		<dc:creator>Shawn Venkat</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.localwisdom.com/blog/2009/01/css-hacks/</guid>
		<description><![CDATA[Us developers always have problems making websites look consistent in multiple browsers. This article will help you out in your quest. http://www.sohtanaka.com/web-design/css-fixes-tools-hacks-cross-browser-solutions/]]></description>
			<content:encoded><![CDATA[<p>Us developers always have problems making websites look consistent in multiple browsers.  This article will help you out in your quest.</p>
<p><a href="http://www.sohtanaka.com/web-design/css-fixes-tools-hacks-cross-browser-solutions/">http://www.sohtanaka.com/web-design/css-fixes-tools-hacks-cross-browser-solutions/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.localwisdom.com/blog/2009/01/css-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
