<?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>PSD to Wordpress &#187; sifr</title> <atom:link href="http://www.sramekdesign.com/tag/sifr/feed/" rel="self" type="application/rss+xml" /><link>http://www.sramekdesign.com</link> <description>Get your PSD sliced into the XHTML valid Wordpress theme. SramekDesign offers cheap and fast PSD to Wordpress conversion service.</description> <lastBuildDate>Wed, 08 Sep 2010 04:16:29 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>All-In-One Cufon</title><link>http://www.sramekdesign.com/wordpress/plugins/all-in-one-cufon/</link> <comments>http://www.sramekdesign.com/wordpress/plugins/all-in-one-cufon/#comments</comments> <pubDate>Tue, 23 Feb 2010 11:02:43 +0000</pubDate> <dc:creator>Tom</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[cufon]]></category> <category><![CDATA[flir]]></category> <category><![CDATA[font]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[replacement]]></category> <category><![CDATA[sifr]]></category><guid
isPermaLink="false">http://www.sramekdesign.com/?p=466</guid> <description><![CDATA[All-In-One Cufon plugin allows you an easy replacement of standard fonts with beautiful catchy fonts. This plugin implements Simo Kinnunen&#8217;s Cufón script, which aspires to become a worthy alternative to sIFR. Latest version 1.1.0 Download Features Easy to use Automatic detection of the uploaded fonts Preview of the uploaded fonts Automatic detection of the fontFamily [...]]]></description> <content:encoded><![CDATA[<div
class="socialize-in-content" style="float:right;"><div
class="socialize-in-button-right"><script type="text/javascript">tweetmeme_url = "http://www.sramekdesign.com/wordpress/plugins/all-in-one-cufon/";
			tweetmeme_source = "tweetmeme";</script> <script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p>All-In-One Cufon plugin allows you an easy replacement of standard fonts with beautiful catchy fonts.<br
/> This plugin implements Simo Kinnunen&#8217;s <a
href="http://wiki.github.com/sorccu/cufon/about" rel="nofollow">Cufón script</a>, which aspires to become a worthy alternative to sIFR.</p><h3>Latest version 1.1.0</h3><p><a
href="http://wordpress.org/extend/plugins/all-in-one-cufon/" rel="nofollow" class="download-file">Download</a></p><h3>Features</h3><ul><li>Easy to use</li><li>Automatic detection of the uploaded fonts</li><li>Preview of the uploaded fonts</li><li>Automatic detection of the fontFamily parameter</li><li>Option to enable only font you really want to use</li><li>Code tips</li></ul><div
id="attachment_200" class="wp-caption alignnone" style="width: 238px"><a
href="http://tomsramek.com/wp-content/uploads/screenshot-1.jpg"><img
src="http://tomsramek.com/wp-content/uploads/screenshot-1-228x300.jpg" alt="" title="screenshot-1" width="228" height="300" class="size-medium wp-image-200" /></a><p
class="wp-caption-text">All-In-One Cufon admin panel with code tips, fonts preview and field where you set your font.</p></div><h3>How-to</h3><ul><li>Download plugin from WordPress repository.</li><li>Unzip and upload it to \wp-content\plugins\. Or you can go to the admin panel:<ul><li>Plugins &#8211;> Add New</li><li>Type &#8220;all-in-one cufon&#8221; into the search field.</li><li>Install.</li><li>First you have to generate JavaScript file of your .otf, .ttf etc. font file. To generate this you have to go the <a
href="http://cufon.shoqolate.com/generate/" rel="nofollow">Cufon generator</a>.<br
/> Make sure the EULA of the font permits web embedding.</li></ul></li><li>Create a folder called /cufon-fonts/ in the wp-content/plugins/ directory, where you need to upload your generated font .js files.</li><li>When you&#8217;re done, just go the admin panel: Settings&#8211;>All-In-One Cufon</li><li>There you will instantly see fonts that were detected in your \wp-content\plugins\cufon-fonts\ folder.</li><li>Enable fonts you wish to use.</li><li>The last step is adding the Cufón code.</li></ul><h4>Adding Cufon code</h4><p>Add Cufon code to the Cufon&#8217;s code field. Basic code for replacing h2 element looks like this:</p><pre class="brush: jscript;">
Cufon.replace('h2');
</pre><p>For more complex element you can use code like this:</p><pre class="brush: jscript;">
Cufon.replace('#top-menu.menu');
</pre><p>1. Add gradient to the font:</p><pre class="brush: jscript;">
Cufon.replace('.cufon-gradient', {
                	color: '-linear-gradient(red, blue)'
                    });
</pre><div
class="cufon-gradient">Cufon can make use of gradients</div><p>2. Add shadow to the font:</p><pre class="brush: jscript;">
Cufon.replace('.cufon-shadow', {
                    textShadow: '2px 2px red'
                    });
</pre><div
class="cufon-shadow">Cufon can have a shadow, too!</div><p>3. Add gradient and shadow to the font:</p><pre class="brush: jscript;">
Cufon.replace('.cufon-gradient-shadow', {
                	color: '-linear-gradient(blue, yellow)',
                        textShadow: '2px 2px #C0C0C0'
                    });
</pre><div
class="cufon-gradient-shadow">Cufon can even have gradient and shadow together.</div><p>4. Add gradient and shadow to a link:</p><pre class="brush: jscript;">
Cufon.replace('a.cufon-gradient-shadow-link', {
                	color: '-linear-gradient(#FF9900, #000000)',
                    textShadow: '2px 2px #C0C0C0',
                    hover: {
		textShadow: '2px 2px #C0C0C0',
		color: '-linear-gradient(#99CC00, #000000)'
	}
                    });
</pre><p><a
href="#" class="cufon-gradient-shadow-link">Cufon can apply gradient and shadow to links.</a></p><p>5. Set font, gradient and hover.</p><pre class="brush: jscript;">
Cufon.replace('a.cufon-easy', {
                    fontFamily: 'Sketch Rockwell',
                    color: '-linear-gradient(#FF6600, #33CCCC)',
                    hover: {
            		textShadow: '2px 2px red',
            		color: '-linear-gradient(black, white)'
	}
</pre><p><a
href="#" class="cufon-easy">Cufon is easy to set up.</a></p><p>6. Add gradient, shadow and transparency to a shadow:</p><pre class="brush: jscript;">
Cufon.replace('a.cufon-transparent', {
                	color: '-linear-gradient(#FFFFFF, #99CCFF)',
                    textShadow: '10px 10px rgba(0, 0, 0, 0.3)',
                    hover: {
		textShadow: '10px 10px rgba(0, 0, 0, 0.3)',
		color: '-linear-gradient(#FFFFFF, #969696)'
	}
                    });
</pre><p>CSS code</p><pre class="brush: css;">
.cufon-transparent { display: block; font-size: 40px; background: url(images/cufon-bg.jpg) repeat; }
</pre><p><a
href="#" class="cufon-transparent">Cufon can work with transparency in links.</a></p><p>You can find much more info on this amazing script on the <a
rel="nofollow" href="http://wiki.github.com/sorccu/cufon">official Cufón&#8217;s pages</a>.<br
/> They also have active forum, where you can ask all your questions regarding Cufón.</p><p><a
rel="nofollow" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=N9A8UH9JPJ82G" class="buy-me-beer">Buy me a beer</a></p> ]]></content:encoded> <wfw:commentRss>http://www.sramekdesign.com/wordpress/plugins/all-in-one-cufon/feed/</wfw:commentRss> <slash:comments>107</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 5/13 queries in 0.008 seconds using disk

Served from: www.sramekdesign.com @ 2010-09-08 13:19:52 -->