<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cordobo &#187; How-To</title>
	<atom:link href="http://cordobo.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://cordobo.com</link>
	<description>Weblog of Andreas Jacob on Webdesign and CSS</description>
	<lastBuildDate>Wed, 05 Oct 2011 19:00:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Provide visual feedback using CSS #1</title>
		<link>http://cordobo.com/1119-provide-visual-feedback-css/</link>
		<comments>http://cordobo.com/1119-provide-visual-feedback-css/#comments</comments>
		<pubDate>Thu, 07 May 2009 20:25:38 +0000</pubDate>
		<dc:creator>Andreas Jacob</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://cordobo.com/?p=1119</guid>
		<description><![CDATA[Small changes can cause big improvements. Todays topic is about small css improvements, resulting in visual feedback for your visitors and improvements to your blogs user interface. Most of the CSS below only works in the newest browsers, but it shouldn&#8217;t prevent you from using it. Don&#8217;t just change the color of the link, provide [...]]]></description>
			<content:encoded><![CDATA[<p>Small changes can cause big improvements. Todays topic is about small css improvements, resulting in visual feedback for your visitors and improvements to your blogs user interface. Most of the CSS below only works in the newest browsers, <a href="http://www.stuffandnonsense.co.uk/archives/and_all_that_transcending_css_malarkey.html">but it shouldn&#8217;t prevent you from using it</a>.</p>
<h3>Don&#8217;t just change the color of the link, provide feedback</h3>
<p>Instead of just changing the color of your links, provide your websites&#8217; visitors with visual feedback for their interaction.</p>
<p><span id="more-1119"></span></p>
<h4>1. Improve the contrast between background and foreground</h4>
<p>If you have a low contrast between the link-color and the background-color (white on light-green, like in the image shown above), apply a light <strong>text-shadow</strong> to your navigation links. </p>
<p><img src="http://farm4.static.flickr.com/3397/3511223702_7c8feed527_o.png" alt="Visual Navigation Feedback" /></p>
<p>The text-shadow property adds a grey drop-shadow with one pixel to the bottom relative to the text (0px on the x-axis, 1px on the y-axis, 0px blur radius and the color #555)</p>
<p><code>a:link { text-shadow: 0px 1px 0px #555; }</code></p>
<p><strong>Note:</strong> This effect is only visible in Firefox 3.5+, Safari 3+, Opera 9+ and Chrome.</p>
<h4>2. Highlight the state of the link</h4>
<p>Change the color for an <code>:hover</code> effect, or like I did in the navigation, apply a darker and slightly bigger text-shadow to the link.</p>
<p><img src="http://farm4.static.flickr.com/3631/3511223744_67026bbf30_o.png" alt="Visual Navigation Feedback" /></p>
<p>With the following CSS applied, the link has a light 3D effect, like hovering over the navigation. </p>
<p><code>a:hover { text-shadow: 1px 1px 1px #000; }</code></p>
<p><strong>Note:</strong> this works only in Firefox 3.5+, Safari 3+ and Chrome, but neither in Internet Explorer nor Opera 9+</p>
<h4>3. Show me the click</h4>
<p>If it&#8217;s a link, let the link show some reaction.</p>
<p><img src="http://farm4.static.flickr.com/3633/3510415051_973786141f_o.png" alt="Visual Navigation Feedback" /></p>
<p>Use <code>a:active</code> to apply a small <strong>button-style</strong> effekt to your links. As a result to the code shown below, your link will &#8220;jump&#8221; 1px below its current position.</p>
<p><code>a:active { position: relative; top: 1px; }</code></p>
<h4>4. Seamless transition for links <span class="amp">&amp;</span> visible states</h4>
<p>If image 4 + 5 looks the same to you &mdash; well, that&#8217;s by intention.</p>
<p><img src="http://farm4.static.flickr.com/3554/3511223846_21152f4569_o.png" alt="Visual Navigation Feedback" /><br />
<small>The 1<sup>st</sup> page, right <strong>after you clicked</strong> the link, <strong>but before the 2<sup>nd</sup> page loads</strong>.</small></p>
<p><img src="http://farm4.static.flickr.com/3551/3510415163_5e3b2d9e35_o.png" alt="Visual Navigation Feedback" /><br />
<small>The 2<sup>nd</sup> page <strong>after</strong> the click.</small></p>
<p>I use the same color for <strong>a:focus</strong> and <strong>a.current</strong> (whereas <strong>.current</strong> is the class applied to the current page link on the 2<sup>nd</sup> page.</p>
<p><code>a:focus, a.current { color: #111; }</code></p>
<p>I also used it to create a <strong>seamless transition</strong> between the 1<sup>st</sup> and the 2<sup>nd</sup> page. Note, it&#8217;s only useful if you know, that the now current link on the 2<sup>nd</sup> page is at the same position like the a:focus on the 1<sup>st</sup> page, e.g. the navigation above. Also note, if it&#8217;s not obvious that the new page loaded, because of a very big header using the browsers complete viewport, this effect can be confusing. It can also be confusing if your page loads very fast or very slow.</p>
<h4>5. The complete transition effect</h4>
<p><img src="http://farm4.static.flickr.com/3316/3511177506_c776543ba7_o.png" alt="Visual Navigation Feedback" /></p>
<p>If you haven&#8217;t seen a lot of changes in the images above, open my website with either Firefox 3.5, Safari 4, Chrome 2 or Opera 9+ and check the top navigation above.</p>
<p>Thanks to <a href="http://korsti.de/blog/2009-04-28/physischer-knopf-klick-effekt-mit-css/">Korsti</a> and <a href="http://webzeugkoffer.de/">Björn</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://cordobo.com/1119-provide-visual-feedback-css/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>WordPress: Exclude Post-Feed-Links and Trackback URLs from Google using &#8220;nofollow&#8221;</title>
		<link>http://cordobo.com/1074-nofollow-post-feed-links-trackback-urls/</link>
		<comments>http://cordobo.com/1074-nofollow-post-feed-links-trackback-urls/#comments</comments>
		<pubDate>Sat, 02 May 2009 15:07:10 +0000</pubDate>
		<dc:creator>Andreas Jacob</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[duplicate content]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[RSS-Feed]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Trackback-URL]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://cordobo.com/?p=1074</guid>
		<description><![CDATA[In my last article about WordPress, Canonical URL’s, Optimized Permalinks, I explained why and how I easily managed to change my blogs permalinks structure with Dean’s Permalinks Migration plugin without the hassle of 404s or duplicate content. With the help of Arne&#8217;s Google XML Sitemaps plugin you can easily create a Sitemap for Google Webmastertools [...]]]></description>
			<content:encoded><![CDATA[<p>In my last article about WordPress, <a href="http://cordobo.com/1043-canonical-urls-optimized-permalinks/">Canonical URL’s, Optimized Permalinks</a>, I explained why and how I easily managed to change my blogs permalinks structure with <a href="http://cordobo.com/1043-canonical-urls-optimized-permalinks/">Dean’s Permalinks Migration</a> plugin without the hassle of 404s or duplicate content.</p>
<p><span id="more-1074"></span></p>
<p>With the help of Arne&#8217;s <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google XML Sitemaps</a> plugin you can easily create a Sitemap for <a href="https://www.google.com/webmasters/tools/">Google Webmastertools</a> and check your blog for any inconsistencies <strong>after</strong> Googlebot re-indexes your site. I was presented with some easy to fix 404&#8242;s, which resulted from an earlier permalinks structure. The next thing was to remove the &#8220;<strong>post feed links</strong>&#8221; and &#8220;<strong>trackback-URLs</strong>&#8221; from the Google index to avoid <strong>duplicate content</strong>.</p>
<p>You can tell Google not to index a certain URL by applying <strong>rel=&#39;nofollow&#39;</strong> to the link. Open <strong>single.php</strong> from your theme&#8217;s folder and replace</p>
<p><code>&lt;?php post_comments_feed_link(&#39;RSS 2.0 Feed&#39;); ?&gt;</code><br />
with<br />
<code>&lt;a href=&#34;&lt;?php echo get_post_comments_feed_link() ?&gt;&#34; rel=&#34;nofollow&#34;>RSS 2.0 Feed&lt;/a&gt;</code></p>
<p>The trackback-URLs are easier to fix. In my case they came attached with</p>
<p><code>rel=&#34;trackback&#34;</code><br />
to which I added a <strong>&#8221; nofollow&#8221;</strong> so it resulted in<br />
<code>rel=&#34;trackback nofollow&#34;</code></p>
<p>Repeat this procedure with all the files with &#8220;feed&#8221; and &#8220;trackback&#8221; URIs and upload them to your themes folder. Finally, wait and let the magic happen.</p>
]]></content:encoded>
			<wfw:commentRss>http://cordobo.com/1074-nofollow-post-feed-links-trackback-urls/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Canonical URL&#8217;s, Optimized Permalinks</title>
		<link>http://cordobo.com/1043-canonical-urls-optimized-permalinks/</link>
		<comments>http://cordobo.com/1043-canonical-urls-optimized-permalinks/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 22:05:11 +0000</pubDate>
		<dc:creator>Andreas Jacob</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[canonical-url]]></category>
		<category><![CDATA[canonical-urls]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://cordobo.com/?p=1043</guid>
		<description><![CDATA[I updated my WordPress permalinks from an old-fashioned and quite outdated /%year%/%monthnum%/%day%/%postname%/ to the more optimized structure /%post_id%-%postname%/. Although I still like it if I can see the date and the entry title at a glance, the new structure has two advantages: the new permalink structure is in some cases faster because of the way [...]]]></description>
			<content:encoded><![CDATA[<p>I updated my WordPress permalinks from an old-fashioned and quite outdated <code>/%year%/%monthnum%/%day%/%postname%/</code> to the more optimized structure <code>/%post_id%-%postname%/</code>. Although I still like it if I can see the date and the entry title at a glance, the new structure has two advantages:</p>
<ol>
<li>the new permalink structure is in some cases faster because of the way wordpress stores the URL information in the database (see further: <em><a href="http://dougal.gunters.org/blog/2009/02/04/efficient-wordpress-permalinks">Efficient permalink strategies for WordPress</a></em>)</li>
<li>according to SEO&#8217;s, a link like <a href="http://cordobo.com/540-firefox-add-ons-for-developers/">cordobo.com/540-firefox-add-ons-for-developers/</a> is more likely to result in a better <abbr title="Search engine results page">SERP</abbr> position than (the same) link named <a href="http://cordobo.com/2008/09/30/firefox-add-ons-for-developers/">cordobo.com/2008/09/30/firefox-add-ons-for-developers/</a></li>
</ol>
<p><span id="more-1043"></span></p>
<h3>Migrating old permalinks to a new structure</h3>
<p>To avoid duplicate content and <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.5">404 &#8211; Not found</a> errors, you should redirect visitors and web crawlers (like GoogleBot) to the new URL with the HTTP Status Code <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.2">301 &#8211; Moved Permanently</a>.</p>
<p>The fastest way to migrate your old permalinks to the new structure is <a href="http://www.deanlee.cn/wordpress/permalinks-migration-plugin/">Dean&#8217;s Permalinks Migration</a> plugin. It&#8217;s from 2006, but it works great with WordPress 2.7.1. After uploading the plugin, activate it and enter your actual permalink structure (the old one), e.g. <code>/%year%/%monthnum%/%day%/%postname%/</code> on the plugin&#8217;s options page and save it. Now you have done that, change the &#8220;Permalink Settings&#8221; to the new structure, in my case <code>/%post_id%-%postname%/</code>.</p>
<h3>Canonical URLs for comments pages</h3>
<p>I really like WordPress new way to break comments into various pages, because paginated comments can reduce your traffic and save your visitors browser (or RAM) resources. But on pages with a lot of comments, it can create a lot of duplicate content, like it happened here:</p>
<ul>
<li>http://cordobo.com/224-updateupgrade-to-wp-21/</li>
<li>http://cordobo.com/224-updateupgrade-to-wp-21/comment-page-6/</li>
<li>http://cordobo.com/224-updateupgrade-to-wp-21/comment-page-5/</li>
<li>&hellip;</li>
</ul>
<p>A consortium of leading web companies, including Google, Yahoo! and Microsoft, created a new standard to handle this kind of unintended duplicate content &ndash; <strong>Canonical URLs</strong>.</p>
<blockquote><p>Q: What is a canonical url? Do you have to use such a weird word, anyway?<br />
A: [...] Canonicalization is the process of picking the best url when there are several choices, and it usually refers to home pages. For example, most people would consider these the same urls:</p>
<p>    * www.example.com<br />
    * example.com/<br />
    * www.example.com/index.html<br />
    * example.com/home.asp</p>
<p><strong>But technically all of these urls are different</strong>. A web server could return completely different content for all the urls above. When Google &#8220;canonicalizes&#8221; a url, we try to pick the url that seems like the best representative from that set.</p></blockquote>
<p>Quoted from Matt Cutts, <a href="http://www.mattcutts.com/blog/seo-advice-url-canonicalization/">SEO advice: url canonicalization</a></p>
<p>They came up with a simple solution, a reference in the &lt;head&gt; of the page to the preferred URL:<br />
<code>&lt;link rel="canonical" href="http://cordobo.com/224-updateupgrade-to-wp-21/" /&gt;</code></p>
<p>To apply this link automatically to every page with comments, I added some lines of code to the <code>functions.php</code> file of my theme. Steve came up with a simple solution in his article  <a href="http://ilikewordpress.com/181/dealing-with-duplicate-content-issues-on-wordpress-comments-pages/">Dealing With Duplicate Content Issues on WordPress Comments Pages</a>:</p>
<p><code> function canonical_for_comments() {<br />
  global $cpage, $post;<br />
  if ( $cpage &gt; 1 ) :<br />
    echo &#34;\n&#34;;<br />
    echo &#34;&lt;link rel=&#39;canonical&#39; href=&#39;&#34;;<br />
    echo get_permalink( $post-&gt;ID );<br />
    echo &#34;&#39; /&gt;\n&#34;;<br />
 endif;<br />
}<br />
add_action( &#39;wp_head&#39;, &#39;canonical_for_comments&#39; );</code></p>
<p>If you use a plugin like <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All-In-One-SEO</a> or Yoasts <a href="http://yoast.com/wordpress/canonical/">Canonical URL&#8217;s for WordPress</a>, you don&#8217;t have to worry about it &ndash; both already take care about canonical URLs.</p>
<p>If you want to know more about duplicate content and how to avoid it using canonical URLs, watch Matt Cutts video or <a href="http://docs.google.com/Present?docid=ddvhbrqf_70dp3rv7hn">check the presentation</a> he did at SMX West:</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/Cm9onOGTgeM&#038;hl=de&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Cm9onOGTgeM&#038;hl=de&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://cordobo.com/1043-canonical-urls-optimized-permalinks/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Uninstall &#8220;Microsoft .Net Framework Assistent&#8221; Firefox add-on</title>
		<link>http://cordobo.com/878-uninstall-microsoft-net-framework-assistent/</link>
		<comments>http://cordobo.com/878-uninstall-microsoft-net-framework-assistent/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 22:16:26 +0000</pubDate>
		<dc:creator>Andreas Jacob</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[Assistent]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[net framework]]></category>
		<category><![CDATA[Uninstall]]></category>

		<guid isPermaLink="false">http://cordobo.com/?p=878</guid>
		<description><![CDATA[Windows Update comes with a sort of surprise this time for us firefox users. Microsoft .Net Framework 3.5 SP1 installs an extension named &#8220;Microsoft .Net Framework Assistant 1.0&#8220;. The add-on adds support for &#8220;Clickonce&#8221; and the ability to report installed .Net versions to the web server. Well, I suppose you neither like Microsofts way to [...]]]></description>
			<content:encoded><![CDATA[<p>Windows Update comes with a sort of surprise this time for us firefox users. <strong>Microsoft .Net Framework 3.5 <abbr title="Service Pack 1">SP1</abbr></strong> installs an extension named &#8220;<strong>Microsoft .Net Framework Assistant 1.0</strong>&#8220;. The add-on adds support for &#8220;<a href="http://en.wikipedia.org/wiki/ClickOnce" rel="nofollow">Clickonce</a>&#8221; and the ability to report installed .Net versions to the web server. Well, I suppose you neither like Microsofts way to distribute the add-on (no uninstall routine, the uninstall button is deactivated) nor the way Firefox handles access to your browser. So let&#8217;s get rid of it.</p>
<p><span id="more-878"></span></p>
<p><a href="http://www.flickr.com/photos/cordobo/3297719789/" title="Uninstall Microsoft .Net Framework Assistent by Cordobo, on Flickr" rel="nofollow"><img src="http://farm4.static.flickr.com/3337/3297719789_9343e4b236_o.jpg" width="500" height="350" alt="Uninstall Microsoft .Net Framework Assistent" /></a><br />
<small>Screenshot of the Firefox &#8220;add-ons dialogue&#8221;. The uninstall option is disabled.</small></p>
<h3>Uninstall the &#8220;Microsoft .Net Framework Assistant 1.0&#8243; add-on</h3>
<ol>
<li>Hit &#8220;Start &rsaquo; Run &rsaquo; &#8220;regedit&#8221; &ndash; STOP! and hit &#8220;CTRL + SHIFT + ENTER&#8221; (&#8220;Run as Administrator&#8221;)</li>
<li>Navigate to &#8220;<code>HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\extensions</code>&#8220;</li>
<li>Right click on the entry &#8220;<code>{20a82645-c095-46ed-80e3-08825760534b}</code>&#8221; and delete it</li>
<li>Navigate to &#8220;<code>HKEY_LOCAL_MACHINE\SOFTWARE\MozillaPlugins</code>&#8220;</li>
<li>Right click on the subkey &#8220;<code>@microsoft.com/WPF,version=3.5</code>&#8221; and delete it</li>
<li>Open Firefox and enter &#8220;about:config&#8221; in the address bar</li>
<li>Filter for &#8220;<code>general.useragent.extra.microsoftdotnet</code>&#8221; and &#8220;<code>microsoft.CLR.clickonce.autolaunch</code>&#8221; and delete/reset the strings (if applicable)</li>
<li>Restart Firefox and goto &#8220;<code>C:\Windows\Microsoft.NET\Framework\v3.5\Windows Presentation Foundation</code>&#8220;</li>
<li>Rename the folder &#8220;<code>DotNetAssistantExtension</code>&#8221; to &#8220;<code>DotNetAssistantExtensionOld</code>&#8221; and the file <code>NPWPF.dll</code> to <code>NPWPF.dll.old</code> (you can delete the folder and the file later if you don&#8217;t encounter problems)</li>
</ol>
<p>This worked for me. I take no responsibility ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://cordobo.com/878-uninstall-microsoft-net-framework-assistent/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Workaround: Unavailable Widgets in WordPress Admin Panel</title>
		<link>http://cordobo.com/843-workaround-unavailable-widgets-in-wordpress-admin-panel/</link>
		<comments>http://cordobo.com/843-workaround-unavailable-widgets-in-wordpress-admin-panel/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 09:49:24 +0000</pubDate>
		<dc:creator>Andreas Jacob</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://cordobo.com/?p=843</guid>
		<description><![CDATA[This is a simple workaround for widgets which seem to be unavailable in your WordPress admin panel. When I started using my latest theme &#8220;Green Park 2&#8220;, I encountered a really nasty bug in WordPress 2.7. If you use a theme with two or more available sidebars and within each sidebar one or more widgets [...]]]></description>
			<content:encoded><![CDATA[<p>This is a simple workaround for widgets which seem to be unavailable in your WordPress admin panel. When I started using my latest theme &#8220;<a href="/green-park-2/">Green Park 2</a>&#8220;, I encountered a really nasty bug in WordPress 2.7.<br />
If you use a theme with <strong>two or more available sidebars</strong> and within each sidebar one or more widgets and you switch to another <strong>theme with only one sidebar</strong>, some of the widgets become unavailable in the admin panel: and you can neither deactivate nor rearrange them.</p>
<p><span id="more-843"></span></p>
<p>Although the solution is quite simple, it&#8217;s a kind of annoying: <strong>the widgets are in use and hidden in the 2<sup>nd</sup> or 3<sup>rd</sup> sidebar</strong> &ndash; WordPress does not provide a simple way to deactivate or rearrange your widgets if you use a theme with only one sidebar and you have no access to the 2<sup>nd</sup> or 3<sup>rd</sup> sidebar.</p>
<ul>
<li>Switch back to a theme with two or more sidebars.</li>
<li>Remove all the widgets from the sidebars.</li>
<li>Switch back to your new 1-sidebar-only theme</li>
<li>Reactivate your widgets.</li>
<li>Enjoy ;)</li>
</ul>
<p>Remember: the content of Text-Widgets gets lost if you deactivate them!</p>
]]></content:encoded>
			<wfw:commentRss>http://cordobo.com/843-workaround-unavailable-widgets-in-wordpress-admin-panel/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>For Developers, Designers and OpenWeb Guys</title>
		<link>http://cordobo.com/680-for-developers-designers-and-openweb-guys/</link>
		<comments>http://cordobo.com/680-for-developers-designers-and-openweb-guys/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 06:30:53 +0000</pubDate>
		<dc:creator>Andreas Jacob</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[color scheme generator]]></category>
		<category><![CDATA[design pattern]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[gui prototyping tools]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[OpenID]]></category>
		<category><![CDATA[Prototyping]]></category>
		<category><![CDATA[ui design]]></category>
		<category><![CDATA[ux design]]></category>

		<guid isPermaLink="false">http://cordobo.com/?p=680</guid>
		<description><![CDATA[A linkdump, for Developers, Designers &#038; OpenStandardGuys Feedmyapp &#8211; Your Daily Web 2.0 Sites Dose &#8220;Feedmyapp is a Web 2.0 Directory with the best and latest web 2.0 sites and web 2.0 applications.&#8221; OpenID Best Practices &#8211; Yahoo! Developer Network &#8220;Yahoo! conducted usability studies in July 2008 to understand the Yahoo! user experience while navigating [...]]]></description>
			<content:encoded><![CDATA[<p><strong>A linkdump, for Developers, Designers &#038; OpenStandardGuys</strong></p>
<p><a href="http://www.feedmyapp.com/" rel="nofollow">Feedmyapp &#8211; Your Daily Web 2.0 Sites Dose</a><br />
&#8220;<em>Feedmyapp is a Web 2.0 Directory with the best and latest web 2.0 sites and web 2.0 applications.</em>&#8221;</p>
<p><a href="http://developer.yahoo.com/openid/bestpractices.html" rel="nofollow">OpenID Best Practices &#8211; Yahoo! Developer Network</a><br />
&#8220;<em>Yahoo! conducted usability studies in July 2008 to understand the Yahoo! user experience while navigating the OpenID journey from the Relying Party to Yahoo! and back. The participants were all experienced Yahoo! users who were tasked with signing into to a 3rd party site using their Yahoo! IDs without having to create a new account for the site.</em>&#8221;</p>
<p><span id="more-680"></span></p>
<p><a href="http://c2.com/cgi/wiki?GuiPrototypingTools" rel="nofollow">GUI Prototyping Tools</a><br />
&#8220;<em>A list of tools helping with drawing screen mock-ups.</em>&#8221;</p>
<p><a href="http://www.welie.com/patterns/" rel="nofollow">Interaction Design Pattern Library &#8211; Welie.com</a><br />
A large list of design pattern for websites. If you&#8217;re an ux-designer or ui-designer, you better bookmark that page.</p>
<p><a href="http://www.colourlovers.com/" rel="nofollow">COLOURlovers :: Color Trends + Palettes</a><br />
&#8220;<em>Find design inspiration with thousands of palettes and color schemes to fall in love with. Influence color trends by rating, commenting and sharing.</em>&#8221;</p>
<p><a href="http://www.wellstyled.com/tools/colorscheme2/index-en.html" rel="nofollow">Color Scheme Generator 2</a><br />
Like it says, an online color scheme generator.</p>
<p><a href="http://www.flowplayer.org/tools/scrollable.html" rel="nofollow">Scroll Multiple Videos with jQuery.Scrollable.js</a><br />
&#8220;<em>Tero Piirainen has created a handy Flowplayer tool that scrolls playlist of several videos using jQuery. The tool is pretty light, which is wrapped in 3.9 Kb javascript file. This tutorial combines the forces from flow.embed and jquery.scrollable and this is what I accomplished to do with just a few lines of code.</em>&#8221; <a href="http://www.flowplayer.org/tutorials/scrollable-view.html">Tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cordobo.com/680-for-developers-designers-and-openweb-guys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

