<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>DomainFunk.com</title>
	
	<link>http://domainfunk.com</link>
	<description>A Magazine for webconnoissuers</description>
	<pubDate>Fri, 31 Jul 2009 08:31:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/</creativeCommons:license><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Domainfunk" type="application/rss+xml" /><feedburner:emailServiceId>Domainfunk</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Parsing XML: XML to HTML using PHP!</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/UnmTokmRSbk/parsing-xml-xml-to-html-using-php</link>
		<comments>http://domainfunk.com/parsing-xml-xml-to-html-using-php#comments</comments>
		<pubDate>Fri, 31 Jul 2009 08:31:59 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[Scripting]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Parsing XML]]></category>

		<category><![CDATA[PHP XML Parser Simple]]></category>

		<category><![CDATA[XML to HTML]]></category>

		<category><![CDATA[XML to HTML file]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=299</guid>
		<description><![CDATA[  Lately I just finished scripting a nice little system that randomizes and publishes content based on an XML feed provided by partner content sponsor. While doing some research for this, I came to know I wasn&#8217;t the lone one who wanted to install such a system. The web app, for which I wrote [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/parsing-xml-xml-to-html-using-php&amp;t=Parsing+XML%3A+XML+to+HTML+using+PHP%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/parsing-xml-xml-to-html-using-php&amp;title=Parsing+XML%3A+XML+to+HTML+using+PHP%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Lately I just finished scripting a nice little system that randomizes and publishes content based on an XML feed provided by partner content sponsor. While doing some research for this, I came to know I wasn&#8217;t the lone one who wanted to install such a system. The web app, for which I wrote this system, runs a script every week creating new .html files from an XML content feed and keeps creating these plain .HTML files on the fly, in essence growing my content library every week <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope this comes in hand to you guys out there looking for this.</p>
<h1>The Simple Parser</h1>
<p>I needed a simple parser which would not need XSLT and the size of the parser would remain small. Since the parser would be placed as a cron job, I needed it to be simple and without the complexities of XSLT. So here is part of the code that made the parser worked.<br />
<code><br />
&lt;?php</code></p>
<p>$doc = new DOMDocument(); //We create a new DOM object.<br />
$doc-&gt;load(&#8217;samplefeed.xml&#8217;,LIBXML_DTDLOAD|LIBXML_DTDATTR); //load all elements of the XML feed. Using LIBXML_DTDLOAD we  load external subset and use LIBXML_DTDATTR to set the default DTD attributes, both are <a title="PHP Lib XML constants" href="http://www.w3schools.com/php/php_ref_libxml.asp" target="_blank">PHP Lib XML constants.</a><br />
$contentitems = $doc-&gt;getElementsByTagName( &#8220;books&#8221; ); // we are now fetching the elements, and with this statement fetching all elements enclosed within the &lt;books&gt; tags.</p>
<p>foreach($contentitems as $contentitem)<br />
{</p>
<p>$titles = $contentitem-&gt;getElementsByTagName( &#8220;title&#8221; );<br />
$title = $titles-&gt;item(0)-&gt;nodeValue; //we are not taking the values from each element nodes.</p>
<p>$authors = $metadata-&gt;getElementsByTagName( &#8220;byline&#8221; );<br />
$author = $authors-&gt;item(0)-&gt;nodeValue;</p>
<p>$ISBNS = $metadata-&gt;getElementsByTagName( &#8220;isbn&#8221; );<br />
$ISBN = $ISBNS-&gt;item(0)-&gt;nodeValue;</p>
<p>//below we are starting an HTML file and using a PHP variable to hold it.</p>
<p>$html = &#8216;&lt;html&gt;</p>
<p>&lt;!&#8211; html code can come in here &#8211;&gt;&#8217;;</p>
<p>/*main article starts here */</p>
<p>$html = $html.$title.&#8221;&lt;br/&gt;&#8221;;<br />
$html = $html.$author.&#8221;&lt;br/&gt;&#8221;;<br />
$html = $html.$ISBN.&#8221;&lt;br/&gt;&#8221;;</p>
<p>$html =&#8217;<br />
/*footer part of the html page */<br />
&lt;/html&gt;&#8217;;</p>
<p>$ourFileName = &#8220;feedarticles/&#8221;.trim($title).&#8221;.html&#8221;; //keeping the title the same as<br />
$ourFileName = str_ireplace(&#8221;?&#8221;,&#8221;",$ourFileName); //removing characters that get attached during char-set conversions or shall we say non-conversions.<br />
$ourFileName = str_ireplace(&#8221;_&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;:&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;;&#8221;,&#8221;",$ourFileName);<br />
$ourFileName = str_ireplace(&#8221;&#8216;&#8221;,&#8221;",$ourFileName);</p>
<p>echo $ourFileName.&#8221; creating the file &#8220;; //Just echoing the statement while creating the file.<br />
$ourFileHandle = fopen($ourFileName, &#8216;w&#8217;) or die(&#8221;can&#8217;t open file&#8221;); //init the file handle<br />
fwrite($ourFileHandle, $html);//write the file.<br />
fclose($ourFileHandle);//close the file handle.</p>
<p>}</p>
<p>?&gt;</p>
<h1>The XML Page</h1>
<p>The below is the SampleFeed.xml file, with the fields that will be parsed.</p>
<p>&lt;NewDataSet _xmlns3a_xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221;&gt;</p>
<p>&lt;Books&gt;<br />
&lt;title&gt;Java Server Pages&lt;/title&gt;<br />
&lt;author&gt;SAMS&lt;/author&gt;<br />
&lt;ISBN&gt;1234&lt;/ISBN&gt;</p>
<p>&lt;title&gt;Logistics&lt;/title&gt;<br />
&lt;author&gt;Tata Mcgraw Hil&lt;/author&gt;<br />
&lt;ISBN&gt;5678&lt;/ISBN&gt;</p>
<p>&lt;/books&gt;<br />
&lt;/NewDataSet&gt;</p>
<h1>Note</h1>
<p>Albeit, there are better and newer ways of parsing XML using PHP, this was suitable for me, because its pretty simple code <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> and it works wonders!</p>
<h1>Resources</h1>
<p>Here are both files zipped up, make sure the permissions are setup right for directories that you want to user write these files into. Here is the entire <a title="Simple XML Parser " href="http://domainfunk.com/articlesuploads/SimpleXMLParse.zip" target="_blank">Simple XML Parser</a> zip, that creates .html files from XML feeds.</p>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;bodytext=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;annotation=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;notes=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;t=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;t=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;submitHeadline=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;submitSummary=Lately%20I%20just%20finished%20scripting%20a%20nice%20little%20system%20that%20randomizes%20and%20publishes%20content%20based%20on%20an%20XML%20feed%20provided%20by%20partner%20content%20sponsor.%20While%20doing%20some%20research%20for%20this%2C%20I%20came%20to%20know%20I%20wasn%27t%20the%20lone%20one%20who%20wanted%20to%20install%20such%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;exttitle=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;h=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fparsing-xml-xml-to-html-using-php&amp;title=Parsing%20XML%3A%20XML%20to%20HTML%20using%20PHP%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=UnmTokmRSbk:xEZIrX1OcUk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=UnmTokmRSbk:xEZIrX1OcUk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=UnmTokmRSbk:xEZIrX1OcUk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=UnmTokmRSbk:xEZIrX1OcUk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=UnmTokmRSbk:xEZIrX1OcUk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/parsing-xml-xml-to-html-using-php/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/parsing-xml-xml-to-html-using-php</feedburner:origLink></item>
		<item>
		<title>Jquery Feedback Tab</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/F9nXS7FIqtY/jquery-feedback-tab</link>
		<comments>http://domainfunk.com/jquery-feedback-tab#comments</comments>
		<pubDate>Sat, 20 Jun 2009 13:08:35 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[feedback tab ajax]]></category>

		<category><![CDATA[jquery feedback tab]]></category>

		<category><![CDATA[jquery tab]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=267</guid>
		<description><![CDATA[  
Every one must have visited, one of the many interactive websites, with a feedback tab on the side or on the top, this tab keeps following as you scroll. Ever wondered, gee, how do I get that ? No? Yes? Well I did and I found out there are companies out there charging [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/jquery-feedback-tab&amp;t=Jquery+Feedback+Tab&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/jquery-feedback-tab&amp;title=Jquery+Feedback+Tab&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p><a href="http://domainfunk.com/jquery-feedback-tab"><img class="size-full wp-image-289" title="jQuery Feedback Tab" src="http://domainfunk.com/wp-content/uploads/2009/06/jqueryfeedbacktab.jpg" alt="jQuery Feedback Tab" width="150" height="150" /></a></p>
<p>Every one must have visited, one of the many interactive websites, with a feedback tab on the side or on the top, this tab keeps following as you scroll. Ever wondered, gee, how do I get that ? No? Yes? Well I did and I found out there are companies out there charging a bomb for this service/product.</p>
<p>So I set out on a quest to get me one of my own feedback tab. Since I love Jquery, I started to hunt for a jquery feedback tab, and I built one, with the help of a nifty plugin. Want to know how to do it?</p>
<p>Here&#8217;s how..</p>
<h1>jQuery Feedback Tab Requirements</h1>
<p>To get started we need the  <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js&amp;downloadBtn=domainfunk.com">latest Jquery release from here</a> and a nifty jQuery based plugin, known as <a href="http://plugins.jquery.com/files/boxy-0.1.4.zip">boxy.js from here</a>. These two would give us the feedback effect you see on this site. Other than these two we require an image, or alternatively you can just have a div if you did like, for the side &#8220;Feedback&#8221; tab. You can download all of my <a href="http://domainfunk.com/articlesuploads/jQueryFeedbackTab.zip">jquery feedback tab files from here</a>.</p>
<h1>jQuery Feedback Tab Code</h1>
<p>Here&#8217;s the code required in your page (File) which would be where you would require the jquery feedback tab. Alternatively, if you have a content management system, like wordpress or joomla, you could use the header or the index files, accordingly, if you need help, just drop us a comment or two <img src='http://domainfunk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><code><br />
<span><br />
<strong>1: &lt;script type=&#8221;text/javascript&#8221; src=&#8221;jquery.js&#8221;&gt;&lt;/script&gt;</strong></span></code></p>
<p><code><span><strong>2: &lt;script type=&#8221;text/javascript&#8221; src=&#8221;boxy.js&#8221;&gt;&lt;/script&gt;</strong></span></code></p>
<p><code><strong> </strong></code></p>
<p><code><span><strong>3: &lt;link rel=&#8221;stylesheet&#8221; href=&#8221;boxy.css&#8221; type=&#8221;text/css&#8221; /&gt;<br />
</strong></span><br />
</code></p>
<p>The above three lines import the .css file required, that you can play around with and import/include the jquery.js file and the boxy.js plugin file. Make sure the &#8220;src&#8221; path is set up right, with the proper relative path for these scripts.</p>
<p><code><br />
<span><br />
<strong>4: $(function() {</strong></span></code></p>
<p><code><span><strong>5:    /* set global variable for boxy window */</strong></span></code></p>
<p><code><strong>6:    var contactBoxy = null;</strong></code></p>
<p><code><strong>7:    /* what to do when click on contact us link */</p>
<p>8:    $(&#8217;.contact_us&#8217;).click(function(){</p>
<p>9:        var boxy_content;</p>
<p>10:        boxy_content += &#8220;&lt;div style=\&#8221;width:300px; height:300px \&#8221;&gt;&lt;form id=\&#8221;feedbacked\&#8221;&gt;&#8221;;</p>
<p>11:       boxy_content += &#8220;&lt;p&gt;Subject&lt;br /&gt;&lt;input type=\&#8221;text\&#8221; name=\&#8221;subject\&#8221; id=\&#8221;subject\&#8221; size=\&#8221;41\&#8221; /&gt;&lt;/p&gt;&lt;p&gt;Your name and/or email:&lt;br /&gt;&lt;input type=\&#8221;text\&#8221; name=\&#8221;your_email\&#8221; size=\&#8221;41\&#8221; /&gt;&lt;/p&gt;&lt;p&gt;Comment:&lt;br /&gt;&lt;textarea name=\&#8221;comment\&#8221; id=\&#8221;comment\&#8221; cols=\&#8221;37\&#8221; rows=\&#8221;5\&#8221;&gt;&lt;/textarea&gt;&lt;/p&gt;&lt;br /&gt;&lt;input type=\&#8221;submit\&#8221; name=\&#8221;submit\&#8221; value=\&#8221;Send &gt;&gt;\&#8221; /&gt;&#8221;;</p>
<p>12:        boxy_content += &#8220;&lt;/form&gt;&lt;/div&gt;&#8221;;</p>
<p>13:        contactBoxy = new Boxy(boxy_content, {</p>
<p>14:            title: &#8220;Send feedback&#8221;,</p>
<p>15:            draggable: false,</p>
<p>16:           modal:true,</p>
<p>17:            behaviours: function(c) {</p>
<p>18:                c.find(&#8217;#feedbacked&#8217;).submit(function() {</p>
<p>19:                    Boxy.get(this).setContent(&#8221;&lt;div style=\&#8221;width: 300px; height: 300px\&#8221;&gt;Sending&#8230;&lt;/div&gt;&#8221;);</p>
<p>20:                    // submit form by ajax using post and send 3 values: subject, your_email, comment</p>
<p>21:                    $.post(&#8221;http://tweetfeat.com/wp-content/themes/default/suggest.php&#8221;, { subject: c.find(&#8221;input[name='subject']&#8220;).val(), your_email: c.find(&#8221;input[name='your_email']&#8220;).val(), comment: c.find(&#8221;#comment&#8221;).val()},</p>
<p>22:                    function(data){</p>
<p>23:                      /*set boxy content to data from ajax call back*/</p>
<p>24:                        contactBoxy.setContent(&#8221;&lt;div style=\&#8221;width: 300px; height: 300px\&#8221;&gt;&#8221;+data+&#8221;&lt;/div&gt;&#8221;);</p>
<p>25:                    });</p>
<p>26:                    return false;</p>
<p>27:                });</p>
<p>28:            }</p>
<p>29:        });</p>
<p>30:        return false;</p>
<p>31:    });</p>
<p></strong></code></p>
<p><code><span><strong>32: });<br />
</strong></span><br />
</code></p>
<p>The above code is responsible for creating the modal box, just like the ones we see with facebook.com. The code is very self explanatory, again if you have any questions feel free to ask in the comments. There are comments above that would be of help to some.</p>
<p><code><br />
<span><br />
<strong>33: #feedback{</strong></span></code></p>
<p><code><span><strong>34: position:fixed;</strong></span></code></p>
<p><code><strong>35: width:50px;</strong></code></p>
<p><code><strong>36: height:150px;</p>
<p>37: top: 150px;</p>
<p>38: z-index:1;</p>
<p></strong></code></p>
<p><code><span><strong>39: }<br />
</strong></span><br />
</code></p>
<p>The above is the CSS code for the tab, now the tab can be an image or div or both, like in our case we have both, a div with the background as a gradient and the foreground being the text &#8220;Feedback&#8221;.</p>
<p><code><br />
<span><strong><br />
40: &lt;div id=&#8221;feedback&#8221;&gt;&lt;a href=&#8221;#&#8221; class=&#8221;contact_us&#8221;&gt;&lt;img src=&#8221;feedback.gif&#8221; border=&#8221;0&#8243;/&gt;&lt;/a&gt;&lt;/div&gt;</strong><br />
</span><br />
</code></p>
<p>Place the above code just after the &lt;body&gt; tag. Since the position of the div is fixed, it would be appearing outside the normal frame of the browser.</p>
<h1>Conclusion:</h1>
<p>I hope this post would save you the cost for the feedback being implemented, as a give away, our first five followers would get a &#8220;Free Jquery Feedback Tab&#8221; installation from us. All you have to do is subscribe and leave a comment!</p>
<h1><a href="http://domainfunk.com/articlesuploads/jQueryFeedbackTab.zip">Download Entire jQuery Feedback Tab Source Code, With Example. Click Here.</a></h1>
<h1>Resources</h1>
<p>For more on boxy, I suggest visiting @ http://onehackoranother.com/projects/jquery/boxy/</p>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;bodytext=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;annotation=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;notes=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;t=Jquery%20Feedback%20Tab" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Jquery%20Feedback%20Tab&amp;body=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;t=Jquery%20Feedback%20Tab" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;submitHeadline=Jquery%20Feedback%20Tab&amp;submitSummary=%0D%0A%0D%0AEvery%20one%20must%20have%20visited%2C%20one%20of%20the%20many%20interactive%20websites%2C%20with%20a%20feedback%20tab%20on%20the%20side%20or%20on%20the%20top%2C%20this%20tab%20keeps%20following%20as%20you%20scroll.%20Ever%20wondered%2C%20gee%2C%20how%20do%20I%20get%20that%20%3F%20No%3F%20Yes%3F%20Well%20I%20did%20and%20I%20found%20out%20there%20are%20compan&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;exttitle=Jquery%20Feedback%20Tab" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Jquery%20Feedback%20Tab&amp;url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;h=Jquery%20Feedback%20Tab" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fjquery-feedback-tab&amp;title=Jquery%20Feedback%20Tab" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=F9nXS7FIqtY:VLD-1_QvkU0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=F9nXS7FIqtY:VLD-1_QvkU0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=F9nXS7FIqtY:VLD-1_QvkU0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=F9nXS7FIqtY:VLD-1_QvkU0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=F9nXS7FIqtY:VLD-1_QvkU0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/jquery-feedback-tab/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/jquery-feedback-tab</feedburner:origLink></item>
		<item>
		<title>Iframe and jQuery</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/__v5biDCqzM/iframe-and-jquery</link>
		<comments>http://domainfunk.com/iframe-and-jquery#comments</comments>
		<pubDate>Wed, 18 Mar 2009 13:18:13 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[iframe resizing]]></category>

		<category><![CDATA[jQuery for newbies]]></category>

		<category><![CDATA[jQuery iframe]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=261</guid>
		<description><![CDATA[  Most web masters have, or will, come across the &#8220;ol&#8217; iframe resizing dilema&#8221;. I know, I have and How! I have tried any and everything from javascript ot PHP to resize the iFrame window according to the size of the page loaded within. And more often than not, failed miserably, because of the [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/iframe-and-jquery&amp;t=Iframe+and+jQuery&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/iframe-and-jquery&amp;title=Iframe+and+jQuery&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Most web masters have, or will, come across the &#8220;ol&#8217; iframe resizing dilema&#8221;. I know, I have and How! I have tried any and everything from javascript ot PHP to resize the iFrame window according to the size of the page loaded within. And more often than not, failed miserably, because of the cross server scripting security instilled in every browser and platform.</p>
<p>Well, not until recently, with the help of jQuery I was able to resize the iFrame height even with the cross server security of all browsers and it was something that bought a smile to my face and simply because it did, I am in love with jQuery. Here&#8217;s how to&#8230;</p>
<h1>The Problem statement.</h1>
<p>The below code will guide you through the entire process of getting your iframe resized, even if the page loaded within the iframe is from a different server. I am still working on this code, to get the iframe resized exactly as the size of the page within the iframe, and as soon as I figure that one out, it will be out here.</p>
<h1>The Idea.</h1>
<p>For the resizing to work, we need a &lt;div&gt; to envelope the &lt;iframe&gt;. And instead of resizing the iframe we resize the div to height and width we want&#8230;</p>
<h1>The Code.</h1>
<p><code>1. &lt;html&gt;</p>
<p>2. &lt;head&gt;</p>
<p>3. &lt;<span class="start-tag">script</span><span class="attribute-name"> type</span>=<span class="attribute-value">&#8220;text/javascript&#8221; </span><span class="attribute-name">src</span>=<span class="attribute-value">&#8220;jquery.js&#8221;</span>&gt;&lt;/<span class="end-tag">script</span>&gt;</p>
<p>4. &lt;Script&gt;</p>
<p>5.<br />
function resizeIframe() {<br />
	$(&#8217;#iframewrapper&#8217;).css(&#8217;height&#8217;,$(document).height()+1000);</p>
<p>};<br />
6. &lt;/script&gt;</p>
<p>7. &lt;/head&gt;</p>
<p>8. &lt;body onload=&#8221;resizeIframe();&#8221; &gt;</p>
<p>9. &lt;div id=&#8221;iframewrapper&#8221;&gt;</p>
<p>10. &lt;iframe name=&#8221;res&#8221; id=&#8221;res&#8221; src=&#8221;http://google.com&#8221;&gt;Google.com&lt;/iframe&gt;</p>
<p>11. &lt;/div&gt;</p>
<p>12. &lt;/body&gt;</p>
<p>13. &lt;/html&gt;</code></p>
<p>The Explanation for the code.</p>
<p>Line 3: We import the <a href="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js">jQuery</a> file, that we have downloaded <a href="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js">from here</a>for the latest version of <a href="http://jquery.com">jQuery click here</a></p>
<p>Line 5: Is a script that is written using jQuery and it essentially increases the size of the div by 1000px. You can use any value you did like to here. using the $() we use the div nodes css property and change/adjust the height as we require it to be.</p>
<p>Line 8: We call the function writing(Line 5) on the onload event of the &lt;body&gt;. This function can be called anytime.</p>
<p>And Thats about it!</p>
<p>Resources</p>
<p>jQuery@ http://jquery.com/</p>
<p>More jQuery Tutorials@ http://docs.jquery.com/Tutorials</p>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery&amp;bodytext=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery&amp;annotation=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery&amp;notes=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;t=Iframe%20and%20jQuery" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Iframe%20and%20jQuery&amp;body=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;t=Iframe%20and%20jQuery" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;submitHeadline=Iframe%20and%20jQuery&amp;submitSummary=Most%20web%20masters%20have%2C%20or%20will%2C%20come%20across%20the%20%22ol%27%20iframe%20resizing%20dilema%22.%20I%20know%2C%20I%20have%20and%20How%21%20I%20have%20tried%20any%20and%20everything%20from%20javascript%20ot%20PHP%20to%20resize%20the%20iFrame%20window%20according%20to%20the%20size%20of%20the%20page%20loaded%20within.%20And%20more%20often%20t&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;exttitle=Iframe%20and%20jQuery" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Iframe%20and%20jQuery&amp;url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;h=Iframe%20and%20jQuery" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fiframe-and-jquery&amp;title=Iframe%20and%20jQuery" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=__v5biDCqzM:0KmCKDRjtiw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=__v5biDCqzM:0KmCKDRjtiw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=__v5biDCqzM:0KmCKDRjtiw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=__v5biDCqzM:0KmCKDRjtiw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=__v5biDCqzM:0KmCKDRjtiw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/iframe-and-jquery/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/iframe-and-jquery</feedburner:origLink></item>
		<item>
		<title>An Interview with, Twitters @DCTH’s founder, Chad Engle!</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/BiPVuwtiC6Q/an-interview-with-dcths-founder-chad-engle</link>
		<comments>http://domainfunk.com/an-interview-with-dcths-founder-chad-engle#comments</comments>
		<pubDate>Sun, 01 Mar 2009 08:37:48 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[Inspiration]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[chad engle]]></category>

		<category><![CDATA[DCTH]]></category>

		<category><![CDATA[inspirations]]></category>

		<category><![CDATA[interviews]]></category>

		<category><![CDATA[twitter community design]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=225</guid>
		<description><![CDATA[   This week, we bring to you an interview, with design community innovator, amazingly talented, young designer, -  Mr. Chad Engle, Co-founder of  @DCTH or also known as Design Community Twitter Hours. @DCTH, is completely community driven, first of its kind on twitter, a community for designers, by designers and from [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/an-interview-with-dcths-founder-chad-engle&amp;t=An+Interview+with%2C+Twitters+%40DCTH%27s+founder%2C+Chad+Engle%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/an-interview-with-dcths-founder-chad-engle&amp;title=An+Interview+with%2C+Twitters+%40DCTH%27s+founder%2C+Chad+Engle%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p> This week, we bring to you an interview, with design community innovator, amazingly talented, young designer, -  Mr. Chad Engle, Co-founder of  <a href="http://twitter.com/DCTH">@DCTH or also known as Design Community Twitter Hours</a>. <a href="http://twitter.com/DCTH">@DCTH</a>, is completely community driven, first of its kind on twitter, a community for designers, by designers and from designers! A great place to get your inspirations, doodles, and just mingle with a community of over a 1000 designers! </p>
<h1> Some of Chad&#8217;s designs</h1>
<p><a href="http://domainfunk.com/wp-content/uploads/2009/03/mainst.jpg" rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/mainst-300x166.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="300" height="166" class=" size-medium wp-image-241" border="0"/></a><br />
<a href="http://domainfunk.com/wp-content/uploads/2009/03/cart.jpg"  rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/cart-150x150.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="150" height="150" class="alignone size-thumbnail wp-image-240" border="0"/></a><br />
<a href="http://domainfunk.com/wp-content/uploads/2009/03/marshall.jpg"  rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/marshall-150x150.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="150" height="150" class="alignone size-thumbnail wp-image-246" border="0"/></a><br />
<a href="http://domainfunk.com/wp-content/uploads/2009/03/progensis.jpg"  rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/progensis-150x150.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="150" height="150" class="alignone size-thumbnail wp-image-247" border="0"/></a><br />
<a href="http://domainfunk.com/wp-content/uploads/2009/03/sonus.jpg"  rel="lightbox"><img src="http://domainfunk.com/wp-content/uploads/2009/03/sonus-150x150.jpg" alt="Chad Engle Design" title="Chad Engle Design" width="150" height="150" class="alignone size-thumbnail wp-image-248" /></a><br/><br/></p>
<h1>The Interview!</h1>
<p><img src="http://domainfunk.com/wp-content/uploads/2009/03/businesscard.jpg" alt="Chad Engle! - Design Community Innovator!" title="Chad Engle! " width="599" height="333" class="size-full wp-image-233" /><br/><br/><br />
Here is the interview, that was taken via email  and we are very thankful to Mr. Chad Engle, for sparing the time for us and this interview. We wish Chad, best of luck on all his aspirations and Thanks again! </p>
<h1 style="font-size:14pt"> A small bio about yourself?</h1>
<p>My name is Chad Engle I am a full-time Graphic Designer for Charles Ryan Associates in Charleston, WV. I am 22 years old and have been in the field for such a short time but I feel like I have grown as a designer/person more than I can put words to.  I have been trying to extend my network through online connections such as twitter, facebook and linked-in. I have learned that in this field that it is all about who you know and have connections to. You can connect with me more at <a href="http://twitter.com/chadengle">@chadengle</a></p>
<h1 style="font-size:14pt">1. Hi Chad, so tell us something about you and your experience as a designer/artist?</h1>
<p>I am a recent graduate from Marshall University and I have been in the full time world for about 6-7 months. I worked on several freelance projects while I was in college as well as having many different internships and work experiences along the way.</p>
<h1 style="font-size:14pt">2. From tweets, its pretty clear that you want a podium, a community of designers to get together and talk about design and share ideas and resources, sorry to be brute, but the question being, why? And what do you plan to instill with this and when will you call it a success?</h1>
<p>The why? I think that we as designers need feedback. We need places to bounce ideas of and learn from each other. It also pushes us as a community to challenge each other and move our designs into creative and innovative solutions. I think this has already been a huge success. When I started <a href="http://twitter.com/DCTH">DCTH (Design Community Twitter Hours)</a> I had no idea that I would even have 50 people interested. I have 1,000 followers that are on the twitter account for DCTH. I feel like the design community has grown more tight nit (those that have connected thus far) I think that this service will only continue to grow with time and will hopefully blossom into conferences and meetings.</p>
<h1 style="font-size:14pt">3. Tell us about your design inspirations?</h1>
<p>I think inspiration can be found in anything. I see architecture, photography, a coffee cup, anything that sparks that creative switch in your brain. I draw inspiration from all of my RSS feeds that I read and through my peers. There are many great designers that I draw inspiration from and even student work. Again, its what makes you “think” creatively. </p>
<h1 style="font-size:14pt">4. Any Specific tools that you use, that elevate your design process, help you get the picture from your head to your selected medium?</h1>
<p>I have recently been reading a book called “Beyond Disruption” Changing the Rules in the marketplace. It talks about defying convention through the design and marketing process. I think we as designers need to implement this idea.  This mindset helps me push past the first stereotypical designs. I also have a Macbook Pro and Adobe Creative suite that helps me implement my ideas to a digital medium. </p>
<h1 style="font-size:14pt">5. Any words on designers block? Or lack of inspiration? How does a designer like you cope in such circumstances?</h1>
<p>I think sometimes that you need to take a break to push through the block. I like to take a 15 minute break from technology when this happens. No iPhone, twitter, computer. Just me and maybe a cup of coffee. I feel when you take this “tech break” you can clear your head and then move forward with what you need to do. I also think that RSS feeds and surfing the internet help you get inspired again and continue to work.</p>
<h1 style="font-size:14pt">6. There are a lot of design communities online, any according to you is just specifically for designers, helping you acheive your ideas of single collective of designers?</h1>
<p>I think that any network is just as good as another. It just depends how much you put into connecting with others. If you do not have twitter I would suggest going and signing up for an account. There is a whole slew amazing people to draw inspiration from, pick there brains and just plain connect.</p>
<h1 style="font-size:14pt">7. According to you, what are the incentives a designers looks forward to, money not being one of these, when he or she finishes acheiving the design?</h1>
<p>Knowing that this piece of design communicates the best possible outcome. </p>
<h1 style="font-size:14pt">8. How do you start your design process for a client?</h1>
<p>The first thing I do is brainstorm. I try to rack the clients brain as much as possible to see where they want to go and make sure that we are on the same page before I even start with the design process. Communication is key when it comes to working with others. Do not be afraid to ask questions. </p>
<h1 style="font-size:14pt">9. How do you approach a client and what if you have to convince him or her to actually go with you on the design consultations, rather than their inputs?</h1>
<p>I think that you have to be able to communicate with your client that you are the person that knows about the design. My favorite saying is: “You don’t buy a guard dog and bark for it, let your designer do the barking.”</p>
<h1 style="font-size:14pt">10. According to you, what are the pre-requisites for some one who wants to become a designer?</h1>
<p>I feel very strongly about having higher education in the field. Ther are several talented self-taught designers but, I feel that with having higher education in the field you bring yourself to a higher awareness level which allows you to push your designs and your clients. </p>
<h1 style="font-size:14pt">11. Would you categorize, webdesign, logo design and the derivatives as the new age paintings with each designer being an artist?</h1>
<p>I had a real hang-up with this concept in college.</p>
<h1 style="font-size:14pt">12. According to you, who is the &#8216;Leonardo-da-vinci&#8217; of the webdesign arena?</h1>
<p>That’s hard to answer. I am not sure if anyone has really stepped forward at this point that could be compared to Da Vinci.</p>
<h1 style="font-size:14pt">13. Does it get hard to make a living as a designer? </h1>
<p>Not at all. It is just like anything else I just depends on how much work you put into it.</p>
<h1 style="font-size:14pt">14. Can web developer become a webdesigner?</h1>
<p>I think one could. It just depends on how much they want to become a designer and learn about it.</p>
<h1 style="font-size:14pt">15. Tell us something about DCTH.</h1>
<p>This whole idea spawned off a random conversation with a friend <a href="http://twitter.com/adellecharles">Adelle Charles</a> and <a href="http://twitter.com/imjustcreative">Graham Smith</a>. </p>
<h1 style="font-size:14pt">16. What made you start this community?</h1>
<p>I felt that there was a gap in this area in the design community and figured why not try to change it.</p>
<h1 style="font-size:14pt">17. What are your objectives, goal and mission with DCTH?</h1>
<p>To connect with as many designers as possible and bring information to those who ask for it.</p>
<h1 style="font-size:14pt">18. Why twitter.com for DCTH?</h1>
<p>It seems to be a great forum for connectivity.</p>
<h1 style="font-size:14pt">19. When will you call DCTH to be successful?</h1>
<p>It already has been successful and will become more and more successful.</p>
<h1 style="font-size:14pt">20. Any future ideas of innovation, for the design community?</h1>
<p>There are several but I am going to keep them secret to peak suspense! ?</p>
<h1 style="font-size:14pt">21. Any favorite websites where you derive or have derived design inspirations from?</h1>
<p>I think a very solid network to find really amazing designs is the Behance Network. (behance.net) I feel that the designers that have portfolios on there are very high quality work. They have a very minimal site design so the work really stands out. </p>
<h1 style="font-size:14pt">22. For a design community, what is right mixture required for it to become successful?</h1>
<p>I think the main indgredient for a community to become successful is involvment of the people. The strong community support that I have had from DCTH has been amazing. People have scheduled college classes around it, stayed up way late over seas to participate and just been amazing in getting more people involved. I am very humbled.</p>
<h1 style="font-size:14pt">23. What kind of marketing strategies you use to attract designers and creatives to your community?</h1>
<p>Personal connections. I have been following and trying to connect with as many designers as possible on @DCTH I think that people want to connect with others. It just depends if they will come out of there shell to connect with others. </p>
<h1 style="font-size:14pt">24. How do you mange your personal life, career and the community?</h1>
<p>I think they are one in the same. I am a designers regardless of what I am doing. It effects my decisions and how I carry myself. Just be yourself throughout everything you do and people will love you for it.</p>
<h1 style="font-size:14pt">25. What do you look for in a community like DCTH?</h1>
<p>Involvement. I would love to have a conference one day where designers meet, listen to speakers and mingle with each other. Telling design stories and sharing personal connections with each other.</p>
<h1 style="font-size:14pt">26. What would a newbie designer, on joining the community find as a resource or help on DCTH?</h1>
<p>I think people new and old will find things to help them. Even if it just connecting with other designers. In this industry if you do not keep up with the times you will be left behind, plain and simple.</p>
<h1 style="font-size:14pt">27. Any head way with the community innovating? And how can we help to get you there?</h1>
<p>Yes every week there is more headway. There is a site up that will soon be finished http://DCTH.info You can help my by telling one designer about DCTH. If everyone tells one designer about DCTH the community involvment will be amazing.</p>
<h1 style="font-size:14pt">28. Ever felt a design let you down? And, if yes how did you cope?</h1>
<p>Yes. Every designer has felt this before. You have to know when to let go of a design and know that you cannot always make each thing innovative. Just try to keep your style and make it the best it can. Don’t let it get you down.</p>
<h1 style="font-size:14pt">29. Any tips for newbies to market their talents?</h1>
<p>Network. I can’t even imagine what happened before the world of the internet or the world of twitter. I have connected with so many designers/creatives that I only would have dreamed of before this.</p>
<h1 style="font-size:14pt">30. Any comments, suggestions, anything you might want to add, that we might have forgotten?</h1>
<p>No. I think you pretty much put me on the hot seat for as much information that you could pick out of my brain! I need to go take a break now. Haha Thank you very much for the interview and I wish you the best of luck in your ventures.</p>
<h1>Are you a designer/creative? </h1>
<p><a href="http://twitter.com/DCTH">Get in touch with the DCTH community here. </a><br />
<a href="http://DCTH.info">Soon to come DCTH website.</a><br />
<a href="http://twitter.com/chadengle">Connect with Chad.</a><br />
<a href="http://twitter.com">Don&#8217;t have a twitter account?</a></p>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;bodytext=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;annotation=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;notes=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;t=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;t=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;submitHeadline=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;submitSummary=%20This%20week%2C%20we%20bring%20to%20you%20an%20interview%2C%20with%20design%20community%20innovator%2C%20amazingly%20talented%2C%20young%20designer%2C%20-%20%20Mr.%20Chad%20Engle%2C%20Co-founder%20of%20%20%40DCTH%20or%20also%20known%20as%20Design%20Community%20Twitter%20Hours.%20%40DCTH%2C%20is%20completely%20community%20driven%2C%20first%20of%20it&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;exttitle=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;h=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fan-interview-with-dcths-founder-chad-engle&amp;title=An%20Interview%20with%2C%20Twitters%20%40DCTH%27s%20founder%2C%20Chad%20Engle%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=BiPVuwtiC6Q:frRe2NGlKXM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=BiPVuwtiC6Q:frRe2NGlKXM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=BiPVuwtiC6Q:frRe2NGlKXM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=BiPVuwtiC6Q:frRe2NGlKXM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=BiPVuwtiC6Q:frRe2NGlKXM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/an-interview-with-dcths-founder-chad-engle/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/an-interview-with-dcths-founder-chad-engle</feedburner:origLink></item>
		<item>
		<title>Win a free laptop skin!!!</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/JYtheTIr0cw/win-a-free-laptop-skin</link>
		<comments>http://domainfunk.com/win-a-free-laptop-skin#comments</comments>
		<pubDate>Wed, 18 Feb 2009 00:24:44 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[Freebies]]></category>

		<category><![CDATA[laptop skin freebies]]></category>

		<category><![CDATA[laptopskin sweepstakes]]></category>

		<category><![CDATA[win laptop skins]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=218</guid>
		<description><![CDATA[  Ok, lets start with introductions, Welcome &#8220;DomainFunk.com - Magazine for Webconnoisseurs&#8221; an online publication that indulges in writing articles, creating video tutorials, creating brushes, vector art, themes, etc. for new and old webmasters alike. Now most of the topics are modern and have just been written in the past few months. I am [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/win-a-free-laptop-skin&amp;t=Win+a+free+laptop+skin%21%21%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/win-a-free-laptop-skin&amp;title=Win+a+free+laptop+skin%21%21%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Ok, lets start with introductions, Welcome &#8220;DomainFunk.com - Magazine for Webconnoisseurs&#8221; an online publication that indulges in writing articles, creating video tutorials, creating brushes, vector art, themes, etc. for new and old webmasters alike. Now most of the topics are modern and have just been written in the past few months. I am a webmaster myself and love to write articles whenever I do get time. Albeit, I post atleast one article a week, if not more. </p>
<p>DomainFunk.com, is now giving away free laptop skins!! How and why? Well, we would like to introduce ourselves with webmasters around the world and would like them to join the discussion. About what and where? Well we just came up with our twitter account and would like readers and fellow webmasters to subscribe and enhance are community here and on twitter. Follow us on twitter http://twitter.com/domainfunk</p>
<h1>So whats the deal?</h1>
<p>Well, very simple task actually, we are holding a contest for a month, starting today.. that is.. 18th of February, 2009 to 18th of March, 2009. In this contest, you being a writer/webmaster/any one who loves the web and the internet, has to write articles based on the categories listed below or submit original wordpress themes, photoshop brushes, vector art, articles, tutorials, photoshop video tutorials and the likes to win one. </p>
<h1>Whats Up for Grabs?</h1>
<p>If you own a laptop, any make or model, you get a free laptop skin, one of the three designs shown and shipped free to you, no matter where in the world you are!!!</p>
<div id="attachment_222" class="wp-caption aligncenter" style="width: 420px"><img src="http://domainfunk.com/wp-content/uploads/2009/02/000_0283.png" alt="Win A free Laptop Skin" title="000_0283" width="410" height="547" class="size-full wp-image-222" /><p class="wp-caption-text">Win A free Laptop Skin</p></div>
<h1>Topics/Categories?</h1>
<p>You can write, create, record - the content can be anything and in a form recognized by us and it should pertain to the below listed topics.</p>
<p>1. ajax<br />
2. Photoshop (Video Tutorials or writeups)<br />
3. Vector Art for websites<br />
4. Specifically created wordpress themes or joomla themes for domainfunk.com<br />
5. CSS<br />
6. jQuery tutorials, articles, examples, etc.<br />
7. Inspiration for webdesign<br />
8. Web Graphics</p>
<h1>Can I be the chosen one?</h1>
<p>We have a criteria setup for selecting three winners for the month!!! We will be reading, analyzing and judging your entries and would be anouncing the winners via another blog post such as this one on the 22nd of March, 2009.</p>
<h1>Ground Rules?</h1>
<p>1. No SEO required for any content submitted.<br />
2. No Promotions of brands, advertising of websites, products, etc will be tolerated.<br />
3. Decisions are final and DomainFunk.com reserves all rights in deciding the winners.<br />
4. All work sent in will be not used, printed or replicated any where on the internet, and should not be copied from other sources. Any copyright violations due to submitted work/entries, the sender will be held liable of all charges as per US and International Copyright and Patent laws.<br />
5. DomainFunk.com and partners, entities, associates related to or in partnership with DomainFunk.com, including DomainFunk.com are not liable for submitted content/enteries.<br />
6. Entires sent in should be related to the above mentioned topics only.<br />
7. Be creative guys! Its not difficult to earn a skin!<br />
8. All material submitted will become the sole property of DomainFunk.com<br />
9. Subscribe via RSS or email to DomainFunk.com<br />
10. All Content should be in English.<br />
11. Files sent to us should be scanned and zipped.<br />
12. Last date for entry 18th March, 2009.</p>
<h1>If you agree to the above mentioned guidelines and think you have it in you to win a skin! Send in your entries at skins@domainfunk.com.</h1>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21&amp;bodytext=Ok%2C%20lets%20start%20with%20introductions%2C%20Welcome%20%22DomainFunk.com%20-%20Magazine%20for%20Webconnoisseurs%22%20an%20online%20publication%20that%20indulges%20in%20writing%20articles%2C%20creating%20video%20tutorials%2C%20creating%20brushes%2C%20vector%20art%2C%20themes%2C%20etc.%20for%20new%20and%20old%20webmasters%20alike." title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21&amp;annotation=Ok%2C%20lets%20start%20with%20introductions%2C%20Welcome%20%22DomainFunk.com%20-%20Magazine%20for%20Webconnoisseurs%22%20an%20online%20publication%20that%20indulges%20in%20writing%20articles%2C%20creating%20video%20tutorials%2C%20creating%20brushes%2C%20vector%20art%2C%20themes%2C%20etc.%20for%20new%20and%20old%20webmasters%20alike." title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21&amp;notes=Ok%2C%20lets%20start%20with%20introductions%2C%20Welcome%20%22DomainFunk.com%20-%20Magazine%20for%20Webconnoisseurs%22%20an%20online%20publication%20that%20indulges%20in%20writing%20articles%2C%20creating%20video%20tutorials%2C%20creating%20brushes%2C%20vector%20art%2C%20themes%2C%20etc.%20for%20new%20and%20old%20webmasters%20alike." title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;t=Win%20a%20free%20laptop%20skin%21%21%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Win%20a%20free%20laptop%20skin%21%21%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Ok%2C%20lets%20start%20with%20introductions%2C%20Welcome%20%22DomainFunk.com%20-%20Magazine%20for%20Webconnoisseurs%22%20an%20online%20publication%20that%20indulges%20in%20writing%20articles%2C%20creating%20video%20tutorials%2C%20creating%20brushes%2C%20vector%20art%2C%20themes%2C%20etc.%20for%20new%20and%20old%20webmasters%20alike." title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;t=Win%20a%20free%20laptop%20skin%21%21%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;submitHeadline=Win%20a%20free%20laptop%20skin%21%21%21&amp;submitSummary=Ok%2C%20lets%20start%20with%20introductions%2C%20Welcome%20%22DomainFunk.com%20-%20Magazine%20for%20Webconnoisseurs%22%20an%20online%20publication%20that%20indulges%20in%20writing%20articles%2C%20creating%20video%20tutorials%2C%20creating%20brushes%2C%20vector%20art%2C%20themes%2C%20etc.%20for%20new%20and%20old%20webmasters%20alike.&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;exttitle=Win%20a%20free%20laptop%20skin%21%21%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Win%20a%20free%20laptop%20skin%21%21%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;h=Win%20a%20free%20laptop%20skin%21%21%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fwin-a-free-laptop-skin&amp;title=Win%20a%20free%20laptop%20skin%21%21%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=JYtheTIr0cw:OgAV8GEMGqw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=JYtheTIr0cw:OgAV8GEMGqw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=JYtheTIr0cw:OgAV8GEMGqw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=JYtheTIr0cw:OgAV8GEMGqw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=JYtheTIr0cw:OgAV8GEMGqw:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/win-a-free-laptop-skin/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/win-a-free-laptop-skin</feedburner:origLink></item>
		<item>
		<title>Common Sense Mistakes That  Web Designer Makes</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/NHrdC2fMTuw/common-sense-mistakes-that-web-designer-makes</link>
		<comments>http://domainfunk.com/common-sense-mistakes-that-web-designer-makes#comments</comments>
		<pubDate>Fri, 13 Feb 2009 18:04:22 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[Graphics]]></category>

		<category><![CDATA[web design mistakes]]></category>

		<category><![CDATA[web graphics]]></category>

		<category><![CDATA[wed graphics mistakes]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=215</guid>
		<description><![CDATA[  Every web designer, is first and fore most, a designer, or more aptly an artist. Being an artist, inspiration and creativity for a web designer is always constrained to the screen resolution and the
“web safe colors” and “web safe images”. Albeit, a web design or web graphic, more often than not is an [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/common-sense-mistakes-that-web-designer-makes&amp;t=Common+Sense+Mistakes+That++Web+Designer+Makes&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/common-sense-mistakes-that-web-designer-makes&amp;title=Common+Sense+Mistakes+That++Web+Designer+Makes&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Every web designer, is first and fore most, a designer, or more aptly an artist. Being an artist, inspiration and creativity for a web designer is always constrained to the screen resolution and the<br />
“web safe colors” and “web safe images”. Albeit, a web design or web graphic, more often than not is an inspiration from real life canvases. So being constrained within these parameters, many of us web designers, lose sight of certain no-no&#8217;s where web design is concerned. Now, this not a top ten list of web design no nos. </p>
<h1>I don&#8217;t make now web design &#8220;miskates&#8221;&#8230;</h1>
<p>This is a list of mistakes that a common web designer, in his pursuits of interpreting the client requirements, his creativity and inspiration and delivery of brilliant design, always tends to forget. Although some of the mistakes pointed out the list below, may seem repeated while you, as we designer, were learning, but none the less it is important to keep this is in mind.</p>
<h1>1. Attention Seeking, aren&#8217;t we? </h1>
<p>Ok, this one mistake that I make, almost every time I design a website. I try to give more attention to my design, rather than thinking about the user and his experience. A web design is suppose to make the user see what he or she came looking for on the website you design. As a designer, I have always wanted my designs to get the center stage, rather than content I am designing for&#8230; which in itself is the greatest and most common mistake I could ever make while designing. This is one thing that has to be thought out aloud when starting the design of any website.</p>
<h1>2. Fancying the fancy?</h1>
<p>Another common mistake that I have made while designing for the websites, is that I tend to use a design strategy that is more than fancy for the general masses. Two things go wrong when you make your website look too funky, one – its just too funky and two – content gets left out! Most of us try to find a balance between fancy and just right by using even fancier fonts. This again leads us back to the tail of the snake, that because of the fancy fonts, the website looks too fancy. So? </p>
<p>So try to find a balance between the most aesthetic funky and more attention given to content type designs and I am sure, it will make the world of a difference. </p>
<h1>3. Even my grandma visits websites and buys clothing!</h1>
<p>Ok, for the artist and web designer with more oomph! out there. Keep in mind, that small size of fonts really does make your design look “sleek”, but&#8230;. my grandma wears glasses, among other things and she can&#8217;t really read a lot of content, because either the content is made to look too “Sleek” or there is no way to increase the font, using the font sizer or font switcher&#8230; well what we need to do is make our designs more readable for people who can&#8217;t read small fonts or who have too big a screen to actually notice what&#8217;s written. Normally a user will come on a website and have a look at it, at the most and during the first 3 seconds of having a “look” the content should clearly be visible, amongst the design, to actually make an impression and make the user say. Off course there are standards set in for this and many designers do abide by these standards, but for some they don&#8217;t and generally this is where a designer goofs up, believe I have been in this precarious position before.</p>
<h1>4. Remember people do hate windows! [at least in the computer they do]</h1>
<p>This is another big mistake, when designing the navigation part of a website, a web designer may thing opening more windows for every click, but mind you! This just defeats the purpose of usability and the entire purpose of design! So make sure, that new windows open only when required to.</p>
<h1>5. Remember, people hate change!</h1>
<p>It might be a way life – change; and it might be something everyone cannot avoid, no matter how much one hates it; but that does not mean you make users go through change! What I mean is every website should have one consistent look and feel, so that the users can identify it and the brand if the website deals with any. Along with consistency, do not try and change the window size too, infact, try to keep everything on the website consistent, colors, fonts, look and feel, everything! But, again at the same time, make it engrossing so users can and want to stay on the website in question!</p>
<h1>6. A very vocal no-no</h1>
<p>Many websites, have audio playing as soon as some one comes on the website. Now, if it were a website for a band or a music troupe, great it works. But if its a website for say, an online shop or plain personal web space, then either make sure that he or she can stop the music from playing or do not play any music and save yourself and others the trouble. Why? Simply because not everyone will like the music playing and if you are going to provide options, provide one in every genre of music! </p>
<h1>7.  Navigation, the way ships do!</h1>
<p>Ok, every website design comes down to this – Navigation. You made him or her stay on the website congratulations, now what?? Well provide him or her with a navigation that is easy to use and can be used and understood by a 10 year old! That&#8217;s right. The simpler the better! Do not user drop down lists or if you are using drop downs, make sure you provide an adequate alternative to the same. Make sure the navigation does not break between different browsers and is again consistent all across the website. Do not cloak links, I mean its a SEO self kill any which ways, but if you are designer, make sure the links are not cloaked! Avoid using javascripted links, many web browsers don&#8217;t support these and if you are using these, you provide for an adequate backup for the same. </p>
<h1>Conclusion</h1>
<p>Ok, so most of your design problems go away, if you keep an eye out for this; barring off course CSS related problems, but that deserves another post and will get it in the near future. So adios and have a great day!</p>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes&amp;bodytext=Every%20web%20designer%2C%20is%20first%20and%20fore%20most%2C%20a%20designer%2C%20or%20more%20aptly%20an%20artist.%20Being%20an%20artist%2C%20inspiration%20and%20creativity%20for%20a%20web%20designer%20is%20always%20constrained%20to%20the%20screen%20resolution%20and%20the%20%0D%0A%E2%80%9Cweb%20safe%20colors%E2%80%9D%20and%20%E2%80%9Cweb%20safe%20images%E2%80%9D.%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes&amp;annotation=Every%20web%20designer%2C%20is%20first%20and%20fore%20most%2C%20a%20designer%2C%20or%20more%20aptly%20an%20artist.%20Being%20an%20artist%2C%20inspiration%20and%20creativity%20for%20a%20web%20designer%20is%20always%20constrained%20to%20the%20screen%20resolution%20and%20the%20%0D%0A%E2%80%9Cweb%20safe%20colors%E2%80%9D%20and%20%E2%80%9Cweb%20safe%20images%E2%80%9D.%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes&amp;notes=Every%20web%20designer%2C%20is%20first%20and%20fore%20most%2C%20a%20designer%2C%20or%20more%20aptly%20an%20artist.%20Being%20an%20artist%2C%20inspiration%20and%20creativity%20for%20a%20web%20designer%20is%20always%20constrained%20to%20the%20screen%20resolution%20and%20the%20%0D%0A%E2%80%9Cweb%20safe%20colors%E2%80%9D%20and%20%E2%80%9Cweb%20safe%20images%E2%80%9D.%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;t=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes&amp;body=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Every%20web%20designer%2C%20is%20first%20and%20fore%20most%2C%20a%20designer%2C%20or%20more%20aptly%20an%20artist.%20Being%20an%20artist%2C%20inspiration%20and%20creativity%20for%20a%20web%20designer%20is%20always%20constrained%20to%20the%20screen%20resolution%20and%20the%20%0D%0A%E2%80%9Cweb%20safe%20colors%E2%80%9D%20and%20%E2%80%9Cweb%20safe%20images%E2%80%9D.%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;t=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;submitHeadline=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes&amp;submitSummary=Every%20web%20designer%2C%20is%20first%20and%20fore%20most%2C%20a%20designer%2C%20or%20more%20aptly%20an%20artist.%20Being%20an%20artist%2C%20inspiration%20and%20creativity%20for%20a%20web%20designer%20is%20always%20constrained%20to%20the%20screen%20resolution%20and%20the%20%0D%0A%E2%80%9Cweb%20safe%20colors%E2%80%9D%20and%20%E2%80%9Cweb%20safe%20images%E2%80%9D.%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;exttitle=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;h=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fcommon-sense-mistakes-that-web-designer-makes&amp;title=Common%20Sense%20Mistakes%20That%20%20Web%20Designer%20Makes" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=NHrdC2fMTuw:HZrrKQzj1ak:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=NHrdC2fMTuw:HZrrKQzj1ak:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=NHrdC2fMTuw:HZrrKQzj1ak:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=NHrdC2fMTuw:HZrrKQzj1ak:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=NHrdC2fMTuw:HZrrKQzj1ak:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/common-sense-mistakes-that-web-designer-makes/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/common-sense-mistakes-that-web-designer-makes</feedburner:origLink></item>
		<item>
		<title>Simplifying Backlinks</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/txlHDyffr_c/simplifying-backlinks</link>
		<comments>http://domainfunk.com/simplifying-backlinks#comments</comments>
		<pubDate>Thu, 05 Feb 2009 14:20:58 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[back linking]]></category>

		<category><![CDATA[back links how to]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=212</guid>
		<description><![CDATA[  Since a very long time, many webmasters and website owners have been wanting to get the major share of the Search engine game. So much so that today, many professional webmasters have been using SEO techniques learned over the years, or improvised and stumbled upon methodologies that work where Search Engines are concerned. [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/simplifying-backlinks&amp;t=Simplifying+Backlinks&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/simplifying-backlinks&amp;title=Simplifying+Backlinks&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Since a very long time, many webmasters and website owners have been wanting to get the major share of the Search engine game. So much so that today, many professional webmasters have been using SEO techniques learned over the years, or improvised and stumbled upon methodologies that work where Search Engines are concerned. </p>
<p>For newbies, SEO is a completely new field with a whole encyclopedia of does and donts for each of the three flavors of SEO; viz., White hat SEO, Black Hat SEO and Gray hat SEO techniques. Many, webmasters find themselves into a pool of these techniques and for them the boundaries of the above mentioned “flavors” of SEO are blurred to the point that they get confused and in turn damage their SERPs or no matter what they do, their SERPs remain unchanged. This article deals with simplifying a major White hat SEO methodology, known as “Back Linking”.</p>
<h1>What is Back Linking?</h1>
<p>“Back Linking” ,as a term, is used widely in the SEO world. Back Links are nothing but inbound links or links that link back to your website or specific webpages on your website(s). Every time, some one, it may be you, links to your website, a back link is created, pointing to your website(s). For e.g. If you submit articles on article directories and link back to your website where more information about the article or its contents is present, a back link is created. </p>
<h1>Why Back Linking?</h1>
<p>Well, within a given time interval all search engines “appraise” your website. A major factor for consideration of your websites to be given an higher SERP from what it is currently are back links to your website. For e.g. Google, checks or appraises your websites every three months and assigns PR based on the these back links and content. Does that mean you don&#8217;t give a dam about your content? NO! It means that have content that will be linked back by people all around to your website. The content should be THAT good! It should give something back to the reader and so the reader might link back to your website or webpages for others to read what you have written. Pretty simple eh? So back links are the second thing you should base your SEO strategy on, right after good ol&#8217; content. </p>
<p>Hence, as a webmaster, you would want to develop or write content or information that is back link<br />
“worthy”. Many webmasters, use ebooks as a means to lure in back links or bait links! (Next seo article would be on link baiting!) </p>
<h1>How Back Linking?</h1>
<p>Put up blogs on your website, that has additional information which is maybe a day to day update about the information presented in general on your website. A blog certainly goes a long way. Social bookmarking goes longer here. You can use various social media platforms to generate these back links.  You can even exchange links with other “Relevant” websites. Yes! Google and other search engines do keep an eye on where your back links are coming from. It they are coming from websites which have similar information or content as compared to your website, in that case it is an added advantage.</p>
<p>Other ways to generate back links is to write for blogs as a guest writer! This is by far the best way for generating back links, that I have come across and its completely “white hat”.  Make sure that whatever you are writing for some one else&#8217;s blog, should not be an advertisement article, should be informative and should be able to engross the reader to click on the link and get him to your website!</p>
<p>Yet, another way of generating back links are “link directories” - the legitimate kind. For e.g. Dmoz is the best place to start and Google places a lot of weight if your link backed from dmoz. Make sure you where ever your linking back from are Search engine friendly websites! </p>
<p>Always, remember, people when looking for information, are looking to find a major chunk of it at a single place, and they want to know more about whatever they are looking for, so write for users and link for users not Search engines! </p>
<h1>Back Linking No! No!</h1>
<p>Do not ever buy links! Thats a very big No No! In the SEO industry. If  you are buying links, make sure you know the consequences, may be you will get a boost in your SERPs for now, but later the giants always catch up, take it from personal experience! </p>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks&amp;bodytext=Since%20a%20very%20long%20time%2C%20many%20webmasters%20and%20website%20owners%20have%20been%20wanting%20to%20get%20the%20major%20share%20of%20the%20Search%20engine%20game.%20So%20much%20so%20that%20today%2C%20many%20professional%20webmasters%20have%20been%20using%20SEO%20techniques%20learned%20over%20the%20years%2C%20or%20improvised%20an" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks&amp;annotation=Since%20a%20very%20long%20time%2C%20many%20webmasters%20and%20website%20owners%20have%20been%20wanting%20to%20get%20the%20major%20share%20of%20the%20Search%20engine%20game.%20So%20much%20so%20that%20today%2C%20many%20professional%20webmasters%20have%20been%20using%20SEO%20techniques%20learned%20over%20the%20years%2C%20or%20improvised%20an" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks&amp;notes=Since%20a%20very%20long%20time%2C%20many%20webmasters%20and%20website%20owners%20have%20been%20wanting%20to%20get%20the%20major%20share%20of%20the%20Search%20engine%20game.%20So%20much%20so%20that%20today%2C%20many%20professional%20webmasters%20have%20been%20using%20SEO%20techniques%20learned%20over%20the%20years%2C%20or%20improvised%20an" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;t=Simplifying%20Backlinks" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Simplifying%20Backlinks&amp;body=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Since%20a%20very%20long%20time%2C%20many%20webmasters%20and%20website%20owners%20have%20been%20wanting%20to%20get%20the%20major%20share%20of%20the%20Search%20engine%20game.%20So%20much%20so%20that%20today%2C%20many%20professional%20webmasters%20have%20been%20using%20SEO%20techniques%20learned%20over%20the%20years%2C%20or%20improvised%20an" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;t=Simplifying%20Backlinks" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;submitHeadline=Simplifying%20Backlinks&amp;submitSummary=Since%20a%20very%20long%20time%2C%20many%20webmasters%20and%20website%20owners%20have%20been%20wanting%20to%20get%20the%20major%20share%20of%20the%20Search%20engine%20game.%20So%20much%20so%20that%20today%2C%20many%20professional%20webmasters%20have%20been%20using%20SEO%20techniques%20learned%20over%20the%20years%2C%20or%20improvised%20an&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;exttitle=Simplifying%20Backlinks" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Simplifying%20Backlinks&amp;url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;h=Simplifying%20Backlinks" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fsimplifying-backlinks&amp;title=Simplifying%20Backlinks" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=txlHDyffr_c:QJrjHfuTe6M:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=txlHDyffr_c:QJrjHfuTe6M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=txlHDyffr_c:QJrjHfuTe6M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=txlHDyffr_c:QJrjHfuTe6M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=txlHDyffr_c:QJrjHfuTe6M:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/simplifying-backlinks/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/simplifying-backlinks</feedburner:origLink></item>
		<item>
		<title>Photoshop: Day turns to night!</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/QfZrfjU1GRA/photoshop-day-turns-to-night</link>
		<comments>http://domainfunk.com/photoshop-day-turns-to-night#comments</comments>
		<pubDate>Sun, 25 Jan 2009 08:07:38 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[How-To's]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[photoshop tutorial]]></category>

		<category><![CDATA[photoshop video tutorial]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=197</guid>
		<description><![CDATA[  A quick photoshop video tutorial to convert day pictures/images into night pictures/images. Pretty Simple and straight forward. 



Enjoyed it? Share it!:


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/photoshop-day-turns-to-night&amp;t=Photoshop%3A+Day+turns+to+night%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/photoshop-day-turns-to-night&amp;title=Photoshop%3A+Day+turns+to+night%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>A quick photoshop video tutorial to convert day pictures/images into night pictures/images. Pretty Simple and straight forward. </p>

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="swfobj_0" width="630" height="800" align="left">
      <param name="movie" value="http://domainfunk.com/wp-content/uploads/2009/01/photodaytonight.swf" />
      <param name="align" value="left" />
      <param name="allowfullscreen" value="true" />
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="http://domainfunk.com/wp-content/uploads/2009/01/photodaytonight.swf" width="630" height="800" align="left" allowfullscreen="true">
      <!--<![endif]-->
        Photoshop Tutorial: Day to Night
      <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>




Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;bodytext=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;annotation=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;notes=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;t=Photoshop%3A%20Day%20turns%20to%20night%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Photoshop%3A%20Day%20turns%20to%20night%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;t=Photoshop%3A%20Day%20turns%20to%20night%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;submitHeadline=Photoshop%3A%20Day%20turns%20to%20night%21&amp;submitSummary=A%20quick%20photoshop%20video%20tutorial%20to%20convert%20day%20pictures%2Fimages%20into%20night%20pictures%2Fimages.%20Pretty%20Simple%20and%20straight%20forward.%20%0D%0A%0D%0A%0D%0A%20&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;exttitle=Photoshop%3A%20Day%20turns%20to%20night%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;h=Photoshop%3A%20Day%20turns%20to%20night%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fphotoshop-day-turns-to-night&amp;title=Photoshop%3A%20Day%20turns%20to%20night%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=QfZrfjU1GRA:29ZRCj2RE9E:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=QfZrfjU1GRA:29ZRCj2RE9E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=QfZrfjU1GRA:29ZRCj2RE9E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=QfZrfjU1GRA:29ZRCj2RE9E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=QfZrfjU1GRA:29ZRCj2RE9E:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/photoshop-day-turns-to-night/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/photoshop-day-turns-to-night</feedburner:origLink></item>
		<item>
		<title>Website Quicky!</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/b163t3zYVsY/website-accessibility-quicky</link>
		<comments>http://domainfunk.com/website-accessibility-quicky#comments</comments>
		<pubDate>Mon, 19 Jan 2009 11:45:20 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[Inspiration]]></category>

		<category><![CDATA[website accessibility]]></category>

		<category><![CDATA[website inspiration]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=190</guid>
		<description><![CDATA[  From the beginning itself, the whole idea of a website has been to provide information in any form or kind. Web Standards from the W3C, state that all websites should provide any and all information  they want to, in a user friendly and accessible manner. “Accessibility” being the keyword of this post, [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/website-accessibility-quicky&amp;t=Website+Quicky%21&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/website-accessibility-quicky&amp;title=Website+Quicky%21&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>From the beginning itself, the whole idea of a website has been to provide information in any form or kind. Web Standards from the W3C, state that all websites should provide any and all information  they want to, in a user friendly and accessible manner. “Accessibility” being the keyword of this post, we delve into some checks that you should check your website against, to ascertain your websites accessibility. Accessibility for all, even the physically challenged! </p>
<h1>Checks for a website quicky!</h1>
<h3>1. Alt tags for all objects and images</h3>
<p>Ok, the first check we would do is check our website for all objects and images having an ALT tag with suitable description or information about the object or image. To do this, Use a browser like Internet Explorer and place your cursor on any informational image on your website or objects on your website and wait, let the cursor hover, you will notice a yellowish tag, explaining the image. For e.g. If its your company logo, it should contain your company name, other info you might want to add.  If the image is only a part of the document formation or web design, you can definitely use it for the website description or keywords; it only will boost your on site SEO. ALT tags also display the text enclosed within them, when the image cannot load or the browser does not support images, for e.g. Lynx! </p>
<h3>2. Subtitles for Video based content</h3>
<p>Have your ever seen a movie or video without audio? Thats how physically challenged person would be watching it! So if you can afford to put up subtitles in your videos, believe me it will go a lonnng way!! No subtitles? Ok, so provide a transcript most biggies like Download.com, Cnet.com, etc provide this feature. These websites display transcripts of the video. Unlike video, its transcripts can also be converted into any language using Google translation tools! Again these transcripts also elevate content and will only boost your onsite SEO too!</p>
<h3>3. Forms check</h3>
<p> Check your forms. Many of us leave our forms the way they are, empty, single and unexplainable! Contrary to what might you guys think, web forms are on the front line where Customer Relationship Management is concerned. So pay attention to forms. Display text next to the input objects so as to clearly mention what you want the user to input. Also make sure, while entering values in the form, the “tab” key should be used as the standard keyboard navigation key. You can read all about web contact forms here!</p>
<h3>4. Resizing text</h3>
<p>Sure, many standard browsers do have the feature of changing text size as per users default requirement, but that does not mean you don&#8217;t give an option to users to change the text size! Use CSS to provide for an interface and mechanism where a user can change text sizes to view your browser! Also note the effects on your website layout/design, when fonts are changed. Remember, its all about accessibility.</p>
<h3>5. Use Lynx!</h3>
<p>As stated above, Lynx is CUI or character user interface based browser. Lynx mainly only displays text and links. It cannot render frames, iframes, objects and image tags. So make sure you check your websites appearance in Lynx. Most search engine crawlers look at your website as lynx does, so it will go only to your advantage if you check your website against Lynx!</p>
<h3>6. Website with a mouse!? </h3>
<p>Yes! Your website should be accessible with your mouse. Users should be able to navigate without using their mouse! This only goes to make sure you care about your business or your personal website and look at it as serious tool for communication, advertising, support related relations with your visitors!</p>
<h3>7. Make sense of text links!</h3>
<p>Make sure that all your text links on the website, precisely describe where your visitor will be and what he can expect when he ore she clicks on the said link. Again text links, ideally should not be more the 3-5 words! The less words the better!</p>
<h3>8. Auto check website!</h3>
<p>There are plenty of programs available on the internet that will check all webpages on your website for miscellaneous problems. They won&#8217;t be checking for accessibility, but more so syntax, design, visitors and more. Two of these freely available programs are WebXact and Wave. WebXACT is from IBM and checks for web security. Wave on the other hand deals with the basics of website accessiblity and checks your website for some set standards. I would suggest you use both.</p>
<h3>9. Sitemaps</h3>
<p>Make sure you have two versions of the sitemaps for every website you own, design and deliver. One in HTML for your visitors and the second one in XML, which would be compatible with the standards stated over at Sitemap.org and can be crawled by Yahoo, Google and Live! Sitemaps boost your websites accessibility and visibility where visitors and search engines, both are concerned!</p>
<h1>Website Accessibility Resources</h1>
<p>WebXACT@ http://www-01.ibm.com/software/rational/offerings/websecurity/<br />
Wave@ http://wave.webaim.org//<br />
Sitemap Standards@ http://www.sitemaps.org<br />
Free Sitemap Generator@ http://www.xml-sitemaps.com/<br />
Lynx Website Viewer@ http://www.delorie.com/web/lynxview.html</p>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21&amp;bodytext=From%20the%20beginning%20itself%2C%20the%20whole%20idea%20of%20a%20website%20has%20been%20to%20provide%20information%20in%20any%20form%20or%20kind.%20Web%20Standards%20from%20the%20W3C%2C%20state%20that%20all%20websites%20should%20provide%20any%20and%20all%20information%20%20they%20want%20to%2C%20in%20a%20user%20friendly%20and%20accessible%20ma" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21&amp;annotation=From%20the%20beginning%20itself%2C%20the%20whole%20idea%20of%20a%20website%20has%20been%20to%20provide%20information%20in%20any%20form%20or%20kind.%20Web%20Standards%20from%20the%20W3C%2C%20state%20that%20all%20websites%20should%20provide%20any%20and%20all%20information%20%20they%20want%20to%2C%20in%20a%20user%20friendly%20and%20accessible%20ma" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21&amp;notes=From%20the%20beginning%20itself%2C%20the%20whole%20idea%20of%20a%20website%20has%20been%20to%20provide%20information%20in%20any%20form%20or%20kind.%20Web%20Standards%20from%20the%20W3C%2C%20state%20that%20all%20websites%20should%20provide%20any%20and%20all%20information%20%20they%20want%20to%2C%20in%20a%20user%20friendly%20and%20accessible%20ma" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;t=Website%20Quicky%21" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Website%20Quicky%21&amp;body=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=From%20the%20beginning%20itself%2C%20the%20whole%20idea%20of%20a%20website%20has%20been%20to%20provide%20information%20in%20any%20form%20or%20kind.%20Web%20Standards%20from%20the%20W3C%2C%20state%20that%20all%20websites%20should%20provide%20any%20and%20all%20information%20%20they%20want%20to%2C%20in%20a%20user%20friendly%20and%20accessible%20ma" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;t=Website%20Quicky%21" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;submitHeadline=Website%20Quicky%21&amp;submitSummary=From%20the%20beginning%20itself%2C%20the%20whole%20idea%20of%20a%20website%20has%20been%20to%20provide%20information%20in%20any%20form%20or%20kind.%20Web%20Standards%20from%20the%20W3C%2C%20state%20that%20all%20websites%20should%20provide%20any%20and%20all%20information%20%20they%20want%20to%2C%20in%20a%20user%20friendly%20and%20accessible%20ma&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;exttitle=Website%20Quicky%21" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=Website%20Quicky%21&amp;url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;h=Website%20Quicky%21" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fwebsite-accessibility-quicky&amp;title=Website%20Quicky%21" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=b163t3zYVsY:7wD5z8AZ9gk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=b163t3zYVsY:7wD5z8AZ9gk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=b163t3zYVsY:7wD5z8AZ9gk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=b163t3zYVsY:7wD5z8AZ9gk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=b163t3zYVsY:7wD5z8AZ9gk:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/website-accessibility-quicky/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/website-accessibility-quicky</feedburner:origLink></item>
		<item>
		<title>CSS Tips: The Absolute Theory of Relatively</title>
		<link>http://feedproxy.google.com/~r/Domainfunk/~3/Z4xX3FONSxU/css-tips-the-absolute-theory-of-relatively</link>
		<comments>http://domainfunk.com/css-tips-the-absolute-theory-of-relatively#comments</comments>
		<pubDate>Wed, 14 Jan 2009 16:17:48 +0000</pubDate>
		<dc:creator>DomainFunk.com</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[css absolute relative]]></category>

		<category><![CDATA[css positioning]]></category>

		<category><![CDATA[Css tips]]></category>

		<guid isPermaLink="false">http://domainfunk.com/?p=185</guid>
		<description><![CDATA[  Many webmasters, who are still new to the webmaster world or are still learning CSS, have often pondered on this&#8230; Many of my students have asked me about this&#8230; many of my friends who are in to the same business as I have wondered why we, who have learnt the hard way do [...]]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div style='float:right'><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http://domainfunk.com/css-tips-the-absolute-theory-of-relatively&amp;t=CSS+Tips%3A+The+Absolute+Theory+of+Relatively&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http://domainfunk.com/css-tips-the-absolute-theory-of-relatively&amp;title=CSS+Tips%3A+The+Absolute+Theory+of+Relatively&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td></table></div><p>Many webmasters, who are still new to the webmaster world or are still learning CSS, have often pondered on this&#8230; Many of my students have asked me about this&#8230; many of my friends who are in to the same business as I have wondered why we, who have learnt the hard way do it.. What am I talking about? Positioning in CSS, more so the relationship between absolute and relative positioning in CSS.</p>
<h1>So is it Relatively absolute or Absolutely relative?</h1>
<p>Whenever you are designing with CSS, more often than not, there will be times when you would have to nest divs. These nested divs could be relatively positioned or absolutely positioned. The more often used one would be nesting an absolute positioned div within a relative positioned div, albeit a relative positioned div wrapped around an absolute positioned div is also quite as famous. Huh?</p>
<p>Ok, Sherlock, here&#8217;s the 101 on it. An absolute positioned div or element is positioned with regards to the containment block. Any and all elements are considered to be positioned elements if they are either have relative, absolute or fixed positions. Any of the values, except static, assigned to the position property of a element, gives the element a “position”. Static is default value for most browsers, and if no value is specified(one of the values from the above three), static is taken as the default value. Static also means that the element is within the “normal flow” of the document, in regards with other elements in the web page.</p>
<p>An absolute-positioned element within a web page, having no containing block(s) [i.e. Having no ancestor elemets or having ancestors elements that are not positioned] is always placed in regards to the web page/browser render screen boundaries. Then such an element is known as the “initial containing block”.</p>
<p>For e.g :</p>
<p><code>#Main_Wrapper{<br />
position:absolute;<br />
top:0;<br />
left:0;<br />
}</code></p>
<p>The above element [i.e. Element with the id parameter set to “Main_Wrapper”] would be positioned on the top left hand side of the web browsers render area or screen media, only when the said element has not ancestral elements. But, if the above mentioned elements has any positioned ancestral blocks, the element would be positioned on the top left corner of that ancestral element.</p>
<h1>Absolute Twist, anyone?</h1>
<p>If, the above shown element, has any siblings, their positions are now reset to the boundaries of the ancestral element block! Not of the absolute-positioned block.</p>
<h1>CSS Yap Yap Yap&#8230;</h1>
<p>This does sound unwinding and at the same time ever winding to me. Lets see it action..<br />
During the design of one of my templates, lets call it AlphaZone, I had positioned the<br />
right column as absolute. Since I wanted the right hand side column to be appearing right below my template header. I never wanted an overlap or gaps between the header block and the right column block. My Header contained, a logo, a few links and a “call statement”. Because the links were in h1 tags and were basically texts. This is the reason the navigation could be resized by the browsers, since many people have different default text sizes along with different browsers rendering texts differently. This was the reason behind, me not positioning the right column in context to the screen media boundaries or page boundaries. If I would have, the right column would have overlapped the header for a number of people, using various browsers. So, What I did is absolute-positioned the header, and then created a wrapper block known as #wrappercontent, that would engulf the right column, main content pane and the left column. The main wrappercontent block was relative-positioned. This provided the container or wrapper to flow with the normal flow of the page. This way I achieved the results of having the container block being present below the header no matter what text size or browser or resolution.</p>
<h1>Now for the relative revelation&#8230;</h1>
<p>Since the main wrapper is relative-positioned, all the blocks or elements within the container block would have their positions reset and would have the position adhering to the #wrappercontent block as the containing element or ancestral element. Thus, the right column #rcol, would be auto positioned on the right hand side of #wrappercontent and would be positioned based on this ancestral element. It wouldn&#8217;t bother to be positioned on the top left or top right corner positions and this would also allow the right column to adjust vertically for different resolutions. </p>
<h1>CSS Butt Hugging, are we?</h1>
<p>Ok here is the rope-a-dope. I would have directly set a top-margin property for the top navigation, but I did not. Why? Same reason as above, texts, browsers and resolutions. The border or margin would have resized based on the above three influences. So what was eminent and still is, that The navigational links within the h1 tags were put into an element, which was relative-positioned within an ancestral element that was absolute-positioned, adding to this relative positioning, I also stated the height in pixels, 122px for the nav div, or #nav. This solved the margin or border dilemma.</p>
<h1>The other way out &#8230;</h1>
<p>Off course there are other ways of resolving the problem statement above, but to give you guys a rough idea of ancestral elements and the relationship of relative and absolute positioning, I took the above mentioned example. Perhaps this technique is now more clear to you guys.</p>
<h1>CSS Resources..</h1>
<p>Absolute Vs. Relative Positioning@     webdesign.about.com/od/advancedcss/a/aa061307.htm<br />
Layers, Absolute and relative positioning@ www.yourhtmlsource.com/stylesheets/csslayout.html</p>



Enjoyed it? Share it!:


	<a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively&amp;bodytext=Many%20webmasters%2C%20who%20are%20still%20new%20to%20the%20webmaster%20world%20or%20are%20still%20learning%20CSS%2C%20have%20often%20pondered%20on%20this...%20Many%20of%20my%20students%20have%20asked%20me%20about%20this...%20many%20of%20my%20friends%20who%20are%20in%20to%20the%20same%20business%20as%20I%20have%20wondered%20why%20we%2C%20who%20have" title="Digg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively&amp;annotation=Many%20webmasters%2C%20who%20are%20still%20new%20to%20the%20webmaster%20world%20or%20are%20still%20learning%20CSS%2C%20have%20often%20pondered%20on%20this...%20Many%20of%20my%20students%20have%20asked%20me%20about%20this...%20many%20of%20my%20friends%20who%20are%20in%20to%20the%20same%20business%20as%20I%20have%20wondered%20why%20we%2C%20who%20have" title="Google Bookmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively&amp;notes=Many%20webmasters%2C%20who%20are%20still%20new%20to%20the%20webmaster%20world%20or%20are%20still%20learning%20CSS%2C%20have%20often%20pondered%20on%20this...%20Many%20of%20my%20students%20have%20asked%20me%20about%20this...%20many%20of%20my%20friends%20who%20are%20in%20to%20the%20same%20business%20as%20I%20have%20wondered%20why%20we%2C%20who%20have" title="del.icio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="TwitThis"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;t=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="Facebook"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively" title="Technorati"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="StumbleUpon"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively&amp;body=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively" title="E-mail this story to a friend!"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively&amp;source=DomainFunk.com+A+Magazine+for+webconnoissuers&amp;summary=Many%20webmasters%2C%20who%20are%20still%20new%20to%20the%20webmaster%20world%20or%20are%20still%20learning%20CSS%2C%20have%20often%20pondered%20on%20this...%20Many%20of%20my%20students%20have%20asked%20me%20about%20this...%20many%20of%20my%20friends%20who%20are%20in%20to%20the%20same%20business%20as%20I%20have%20wondered%20why%20we%2C%20who%20have" title="LinkedIn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="Live"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Ma.gnolia"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Ma.gnolia" alt="Ma.gnolia" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;t=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="MySpace"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;submitHeadline=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively&amp;submitSummary=Many%20webmasters%2C%20who%20are%20still%20new%20to%20the%20webmaster%20world%20or%20are%20still%20learning%20CSS%2C%20have%20often%20pondered%20on%20this...%20Many%20of%20my%20students%20have%20asked%20me%20about%20this...%20many%20of%20my%20friends%20who%20are%20in%20to%20the%20same%20business%20as%20I%20have%20wondered%20why%20we%2C%20who%20have&amp;submitCategory=science&amp;submitAssetType=text" title="Yahoo! Buzz"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yahoobuzz.png" title="Yahoo! Buzz" alt="Yahoo! Buzz" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;exttitle=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="Yigg"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://sphinn.com/submit.php?url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="Sphinn"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="Mixx"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="blogmarks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogmarks.png" title="blogmarks" alt="blogmarks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://cimlap.blogter.hu/index.php?action=suggest_link&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively&amp;url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively" title="blogtercimlap"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/blogter.png" title="blogtercimlap" alt="blogtercimlap" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Book.mark.hu"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Book.mark.hu" alt="Book.mark.hu" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://co.mments.com/track?url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="co.mments"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/co.mments.png" title="co.mments" alt="co.mments" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="De.lirio.us"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="De.lirio.us" alt="De.lirio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="DotNetKicks"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.linkagogo.com/go/AddNoPopup?url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="LinkaGoGo"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/linkagogo.png" title="LinkaGoGo" alt="LinkaGoGo" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;h=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="NewsVine"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/newsvine.png" title="NewsVine" alt="NewsVine" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fdomainfunk.com%2Fcss-tips-the-absolute-theory-of-relatively&amp;title=CSS%20Tips%3A%20The%20Absolute%20Theory%20of%20Relatively" title="Reddit"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="scuttle"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="scuttle" alt="scuttle" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="Spurl"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="Spurl" alt="Spurl" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="" title="YahooMyWeb"><img src="http://domainfunk.com/wp-content/plugins/sociable/images/" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=Z4xX3FONSxU:7YPDZ40cu4E:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=Z4xX3FONSxU:7YPDZ40cu4E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=Z4xX3FONSxU:7YPDZ40cu4E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Domainfunk?i=Z4xX3FONSxU:7YPDZ40cu4E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:YwkR-u9nhCs"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=YwkR-u9nhCs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Domainfunk?a=Z4xX3FONSxU:7YPDZ40cu4E:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/Domainfunk?d=dnMXMwOfBR0" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://domainfunk.com/css-tips-the-absolute-theory-of-relatively/feed</wfw:commentRss>
		<feedburner:origLink>http://domainfunk.com/css-tips-the-absolute-theory-of-relatively</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 1.022 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-12 12:26:51 -->
