<?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>Devolux 2010 &#187; WP Plugins</title>
	<atom:link href="http://devolux.nh2.me/category/wp-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://devolux.nh2.me</link>
	<description>WordPress resource</description>
	<lastBuildDate>Sat, 04 Sep 2010 09:24:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP-Plugin: jQuery Font Scaling</title>
		<link>http://devolux.nh2.me/2009/08/fontresizer/</link>
		<comments>http://devolux.nh2.me/2009/08/fontresizer/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 16:38:37 +0000</pubDate>
		<dc:creator>Devolux</dc:creator>
				<category><![CDATA[WP Code]]></category>
		<category><![CDATA[WP Plugins]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://devolux.org/?p=266</guid>
		<description><![CDATA[The plugin is a jQuery supported fontscaling script that offers three links to change the font size of your WordPress web-log.]]></description>
			<content:encoded><![CDATA[<h2>Description</h2>
<p>The plug-in offers three links to change the font size of your blog. They can be inserted anywhere on your website by including a simple PHP-function (-&gt; <em>Installation</em>). These links change the font size value of the most outward html element of the page: the body element. All values of the elements inside the html body must therefore have relative font size values. Only text that you want not to change its font size at all must have an absolute value.</p>
<p>Here is an example for better understanding: The default font size value of the body element must be set to &#8220;10px&#8221; (-&gt; <em>Installation</em>). By clicking the &#8220;A+&#8221;-link this value will be set to &#8220;11px&#8221;. All elements with <em>relative</em> font size values like</p>
<pre name="code" class="css">

p {font-size: 100%;}
</pre>
<p>will then be automatically adjusted to the new top-level font size. In this case the font size of a &#8220;p&#8221;-element will switch from 10px (100% of 10px = 10px) to 11px (100% of 11px = 11px). Font size values of other elements will change likewise (a value of 120% will result in a new font size of 13.2px).<br />
<strong>Important: </strong>Relative font size values are calculated from the <em>direct</em> parent element. This means: An element B which has a 100% font size and which lays inside an element A that has a 120% font size will have the font size values of the element A (12px/13.2px), not the values calculated in proportion to the body element (10px/11px).</p>
<h2>Installation</h2>
<p>1. Upload the plug-in to the &#8220;/wp-content/plugins/&#8221; directory.</p>
<p>2. Activate the plug-in through the &#8220;Plug-ins&#8221; menu in WordPress.</p>
<p>3. Place &#8220;&lt;?php resize_links(); ?&gt;&#8221; in one of your templates to provide the scaling links on your website.</p>
<p>4. Go to your style.css file and assign a font size of 10px to the body element of your website: &#8220;body {font-size: 10px;}&#8221;.</p>
<p>5. This is the most <em>important</em> step: All other font size values in your style sheets must be <em>relative</em> values. Only elements with text that you want not to change its font size at all must have an absolute value.</p>
]]></content:encoded>
			<wfw:commentRss>http://devolux.nh2.me/2009/08/fontresizer/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Automatic Post Thumb</title>
		<link>http://devolux.nh2.me/2009/05/post-thumb/</link>
		<comments>http://devolux.nh2.me/2009/05/post-thumb/#comments</comments>
		<pubDate>Sat, 02 May 2009 15:43:34 +0000</pubDate>
		<dc:creator>Devolux</dc:creator>
				<category><![CDATA[WP Plugins]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://devolux.org/?p=203</guid>
		<description><![CDATA["Automatic Post Thumb" is a WordPress plugin that generates a thumbnail from the first image uploaded to a post. Download available at WordPress.org.]]></description>
			<content:encoded><![CDATA[<h2>Description</h2>
<p>The plug-in extracts the first image uploaded to a WordPress post by using a simple database query. Please note that the database order of the images is not influenced by the way you order your images in a post. The first image uploaded will remain the thumbnail, even if you place it at the end of your article. If you delete the first image, the second one will take its position. If no image at all is added to a post, the plug-in delivers a default image (a white WordPress logo with light grey background).</p>
<p>The title of the thumbnail is generated out of the post title. You can insert the image anywhere in your theme inside the wp-loop by adding a template tag to the source code. Please be aware that the plug-in does not scale or crop the images. It simply delivers the html tag. The styling is intended to be solved via CSS (-&gt; <em>Installation</em>).</p>
<h2>Installation</h2>
<p>1. Upload &#8220;post_thumb&#8221; to the <code>/wp-content/plugins/</code> directory</p>
<p>2. Activate the plugin through the &#8220;Plugins&#8221; menu in WordPress</p>
<p>3. Place <code>&lt;?php post_thumb(); ?&gt;</code> inside the wp-loop of your template, where ever you want the thumbnail to appear.</p>
<p>4. A nice way to use this plugin is to link the images to the post by wrapping the plugin template tag into the post URL:</p>
<pre name="code" class="php">

&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot;&gt;&lt;?php post_thumb(); ?&gt;&lt;/a&gt;
</pre>
<p>5. Adjust display and image size using CSS. The plugin renounces on resizing the thumbnail because this can be done easily inside your style.css. You can use it at any place of your theme by giving it a <code>max-width</code> value. The height will automatically be adjusted and, in the case that the image is more narrow than the <code>max-width</code>, it will keep its original dimensions.</p>
<h2>Download</h2>
<p><a href="http://wordpress.org/extend/plugins/automatic-post-thumb/">Automatic Post Thumb plug-in</a></p>
]]></content:encoded>
			<wfw:commentRss>http://devolux.nh2.me/2009/05/post-thumb/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

