<?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>PixoPoint &#187; plugin</title> <atom:link href="http://pixopoint.com/tag/plugin/feed/" rel="self" type="application/rss+xml" /><link>http://pixopoint.com</link> <description>Specialists in the design, coding and implementation of websites</description> <lastBuildDate>Wed, 25 Apr 2012 21:30:59 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>Auto-update plugin created</title><link>http://pixopoint.com/2011/10/05/auto-update-plugin-created/</link> <comments>http://pixopoint.com/2011/10/05/auto-update-plugin-created/#comments</comments> <pubDate>Wed, 05 Oct 2011 10:13:25 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[auto-update]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[theme]]></category> <category><![CDATA[wordpress.org]]></category><guid isPermaLink="false">http://pixopoint.com/?p=2020</guid> <description><![CDATA[We have a new plugin called the &#8220;PixoPoint Auto-update plugin&#8221; available. It makes it easier to setup themes and plugins to auto-update themselves without needing to be hosted in the WordPress.org plugin or theme repositories. Check it out now! ]]></description> <content:encoded><![CDATA[<p>We have a new plugin called the &#8220;<a href="http://pixopoint.com/products/auto-update/">PixoPoint Auto-update plugin</a>&#8221; available. It makes it easier to setup themes and plugins to auto-update themselves without needing to be hosted in the WordPress.org plugin or theme repositories.</p><p><strong><a href="http://pixopoint.com/products/auto-update/">Check it out now!</a> </strong></p><div id="attachment_2009" class="wp-caption aligncenter" style="width: 490px"><a href="http://pixopoint.com/uploads/auto-update-plugin-screenshot.png"><img class="size-medium wp-image-2009" title="PixoPoint Auto-update-plugin" src="http://pixopoint.com/uploads/auto-update-plugin-screenshot-480x469.png" alt="" width="480" height="469" /></a><p class="wp-caption-text">The admin page for the auto-update plugin</p></div> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2011/10/05/auto-update-plugin-created/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Hybrid Tabs CSS</title><link>http://pixopoint.com/2011/04/27/hybrid-tabs-css/</link> <comments>http://pixopoint.com/2011/04/27/hybrid-tabs-css/#comments</comments> <pubDate>Wed, 27 Apr 2011 08:07:56 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[css]]></category> <category><![CDATA[hybrid]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[tabs]]></category> <category><![CDATA[tadlock]]></category><guid isPermaLink="false">http://pixopoint.com/?p=1886</guid> <description><![CDATA[Today we released a small plugin as a companion to the Hybrid Tabs plugin. We hope someone finds it useful! Hybrid Tabs CSS plugin.]]></description> <content:encoded><![CDATA[<p>Today we released a small plugin as a companion to the Hybrid Tabs plugin. We hope someone finds it useful!</p><p><strong><a href="http://pixopoint.com/products/hybrid-tabs-css/">Hybrid Tabs CSS plugin</a></strong>.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2011/04/27/hybrid-tabs-css/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>PixoPoint Add Span Tags to Titles plugin released</title><link>http://pixopoint.com/2010/12/19/pixopoint-add-span-tags-to-titles-plugin-released/</link> <comments>http://pixopoint.com/2010/12/19/pixopoint-add-span-tags-to-titles-plugin-released/#comments</comments> <pubDate>Sun, 19 Dec 2010 06:15:24 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[functions.php]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[release]]></category> <category><![CDATA[span]]></category> <category><![CDATA[tags]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://pixopoint.com/?p=1681</guid> <description><![CDATA[We needed a super small WordPress plugin for a client of ours which allowed us to have control over the CSS of individual words in each page title. We did this by applying a filter to the the_title() function which split each word out and [...]]]></description> <content:encoded><![CDATA[<p>We needed a super small WordPress plugin for a client of ours which allowed us to have control over the CSS of individual words in each page title. We did this by applying a filter to the <strong>the_title()</strong> function which split each word out and I applied a span tag with a unique class to each one. This plugin is available on the <a href="http://pixopoint.com/products/add-spans-to-titles/">&#8220;PixoPoint Add Span Tags to Titles plugin&#8221; page</a>.</p><p>If you would like to use the functionality of the plugin but prefer to include such functionality in your theme, then simply include the following code in your themes functions.php file:</p><pre class="brush: php; title: ;">/**
 * Primary span tag adding function
 * Code from PixoPoint Add Span Tags to Titles plugin (http://pixopoint.com/products/add-spans-to-titles/)
 */
function pixopoint_add_spans_around_words( $name ) {

	// Initially check that it doesn't contain HTML as that's bound to mess things up
	$check = strip_tags( $name );
	if ( $check != $name )
		return $name; // Just spit out original string if HTML was included - no sanitization as assumes that user intended to include HTML

	$name = explode( ' ', $name ); // Explode inidivual words into array
	foreach ( $name as $number =&gt; $key ) {
		$new_name .= '&lt;span class=&quot;word-' . $number . '&quot;&gt;' . $key . '&lt;/span&gt;' . ' '; // Add span tags
	}
	return $new_name;
}
add_filter( 'the_title', 'pixopoint_add_spans_around_words' ); // Filtering the title
</pre><div id="attachment_1676" class="wp-caption aligncenter" style="width: 490px"><a href="http://pixopoint.com/uploads/pixopoint-add-span-tags.png"><img src="http://pixopoint.com/uploads/pixopoint-add-span-tags-480x246.png" alt="" title="PixoPoint Add Spans to Titles plugin" width="480" height="246" class="size-medium wp-image-1676" /></a><p class="wp-caption-text">PixoPoint Add Spans to Titles WordPress plugin in action</p></div> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2010/12/19/pixopoint-add-span-tags-to-titles-plugin-released/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>PixoPoint Email Submit plugin released</title><link>http://pixopoint.com/2010/12/13/pixopoint-email-submit-plugin-released/</link> <comments>http://pixopoint.com/2010/12/13/pixopoint-email-submit-plugin-released/#comments</comments> <pubDate>Mon, 13 Dec 2010 05:10:32 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[email]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[submit]]></category><guid isPermaLink="false">http://pixopoint.com/?p=1662</guid> <description><![CDATA[One of our clients required a very simple WordPress plugin to allow them to collect email addresses on their site and to output those in a convenient format. The result was the PixoPoint Email Submit plugin which adds this functionality to your WordPress install. The [...]]]></description> <content:encoded><![CDATA[<p>One of our clients required a very simple WordPress plugin to allow them to collect email addresses on their site and to output those in a convenient format. The result was the PixoPoint Email Submit plugin which adds this functionality to your WordPress install.</p><div id="attachment_1657" class="wp-caption alignright" style="width: 329px"><a href="http://pixopoint.com/uploads/email-submit-form.png"><img src="http://pixopoint.com/uploads/email-submit-form.png" alt="" title="PixoPoint Email Submit form" width="319" height="140" class="size-full wp-image-1657" /></a><p class="wp-caption-text">The design of the submit form can be modified via your themes stylesheet.</p></div><p>The plugin has been submitted to the official WordPress plugin repository and will hopefully be available there shortly. In the mean time, check out the <a href="http://pixopoint.com/products/email-submit/">PixoPoint Email Submit plugin</a> page for a download link and more information.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2010/12/13/pixopoint-email-submit-plugin-released/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WP SlimBox2 plugin</title><link>http://pixopoint.com/2009/01/06/wp-slimbox2-plugin/</link> <comments>http://pixopoint.com/2009/01/06/wp-slimbox2-plugin/#comments</comments> <pubDate>Tue, 06 Jan 2009 06:56:11 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[gallery]]></category> <category><![CDATA[images]]></category> <category><![CDATA[jquery]]></category> <category><![CDATA[malcalevak]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[slimbox]]></category><guid isPermaLink="false">http://pixopoint.com/?p=230</guid> <description><![CDATA[The WP SlimBox2 plugin for WordPress is a jQuery version of the WordPress Slimbox plugin. It was developed and is maintained by Greg Yingling (malcalevak). The SlimBox plugin creates animated jJavascript powered overlay popups of your images. This new version has many improvements over the [...]]]></description> <content:encoded><![CDATA[<p>The <a href="http://transientmonkey.com/wp-slimbox2">WP SlimBox2 plugin</a> for WordPress is a jQuery version of the WordPress Slimbox plugin. It was developed and is maintained by <a href="http://transientmonkey.com/">Greg Yingling (malcalevak)</a>. The SlimBox plugin creates animated jJavascript powered overlay popups of your images. This new version has many improvements over the original, including the addition of a plethora of options to allow you to modify it&#8217;s behaviour. The use of jQuery allows for better integration with other plugins and a smaller size and therefore faster page loads.</p><div id="attachment_232" class="wp-caption aligncenter" style="width: 471px"><img class="size-full wp-image-232" title="wpslimbox2_1" src="http://pixopoint.com/uploads/wpslimbox2_1.jpg" alt="The WP SlimBox2 plugin for WordPress features more options than any other Lightbox/Lightbox clone plugin for WordPress" width="461" height="360" /><p class="wp-caption-text">The WP SlimBox2 plugin features more options than any other Lightbox/Lightbox clone plugin for WordPress yet</p></div><p>Support for the plugin is being hosted in our support forum by the plugin author &#8230; <a title="SlimBox plugin support" href="http://pixopoint.com/forum/index.php?board=6.0">WP SlimBox2 plugin support forum</a></p><div id="attachment_233" class="wp-caption aligncenter" style="width: 471px"><img class="size-full wp-image-233" title="wpslimbox2_2" src="http://pixopoint.com/uploads/wpslimbox2_2.jpg" alt="When clicked, your images will be enlarged in a professoinal looking animated overlay." width="461" height="307" /><p class="wp-caption-text">When clicked, your images will be enlarged in a professional looking animated overlay.</p></div><p>Thanks to <a href="http://transientmonkey.com/">Greg Yingling (malcalevak)</a> for creating this great plugin. More information is available on <a href="http://transientmonkey.com/wp-slimbox2">Greg&#8217;s site</a> and in the <a rel="nofollow" href="http://wordpress.org/extend/plugins/wp-slimbox2/">WordPress plugin repository</a>.</p><h3>Support</h3><p>Support for the WP SlimBox2 plugin is available in our <a href="http://pixopoint.com/forum/index.php?board=6.0" title="WP SlimBox2 plugin for WordPress">support forum</a>.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2009/01/06/wp-slimbox2-plugin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Multi-level Navigation Plugin for WordPress</title><link>http://pixopoint.com/2008/06/01/multi-level-navigation/</link> <comments>http://pixopoint.com/2008/06/01/multi-level-navigation/#comments</comments> <pubDate>Mon, 02 Jun 2008 02:58:12 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[flyout]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[slider]]></category><guid isPermaLink="false">http://pixopoint.com/?p=189</guid> <description><![CDATA[<small>Note: This is a replacement for the now defunct <a href="http://pixopoint.com/suckerfish-wordpress-plugin/">Suckerfish dropdown menu plugin</a> for WordPress.</small><h3>Features</h3> The plugin generates the code (W3C valid) necessary to create a Son of Suckerfish horizontal dropdown, vertical flyout or  horizontal slider menu and is 100% compatible with the <a title="Suckerfish Dropdown CSS generator" href="http://pixopoint.com/suckerfish_css/">Multi-level Menu CSS Generator</a>.<strong><a title="Multi-level Navigation Plugin Demo" href="http://pixopoint.com/demo/wordpress/index.php?wptheme=Dropdown%20Plugin">Demo</a><a title="Multi-level Navigation Plugin download" href="http://downloads.wordpress.org/plugin/multi-level-navigation-plugin.zip">Download</a></strong>]]></description> <content:encoded><![CDATA[<p><small>This plugin is a replacement for the now defunct <a href="http://pixopoint.com/suckerfish-wordpress-plugin/">Suckerfish dropdown menu plugin</a> for WordPress.</small></p><p>The plugin generates the code necessary to create a Son of Suckerfish horizontal dropdown, vertical flyout or  horizontal slider menu. The plugin produces W3C valid HTML and CSS and only requires Javascript to function for very old browsers such as IE 6. The Javascript is held in an external file which is linked via IE conditional comments, so only the browsers which require it will download the file. You have control over what items (pages, categories, archives, blogroll etc.) appear in your dropdown via the plugins options page.</p><p>To style your menu, head over to the <a title="Suckerfish Dropdown CSS generator" href="http://pixopoint.com/suckerfish_css/">Multi-level Menu CSS Generator page</a>. Simply copy and paste the CSS from the generator to the plugins options page.</p><h3>Demo</h3><p>Demo is available here &#8230; <a title="Ryan's Suckerfish Dropdown Plugin Demo" href="http://pixopoint.com/?mln=on">Multi-level Navigation Plugin demo</a></p><h3>Download</h3><p>The plugin is available for download here &#8230; <a title="Multi-level Navigation Plugin" href="http://downloads.wordpress.org/plugin/multi-level-navigation-plugin.zip">Multi-level Navigation Plugin</a></p><h3>Installation</h3><p>Add the following code wherever you want the dropdown to appear in your theme (usually header.php) and activate the plugin in your admin panel.</p><p>This code adds a button for your home page and dropdowns for your Pages, Archives, Categories and Blogroll.<br /> <code>&lt;?php if (function_exists('pixopoint_menu')) {pixopoint_menu();} ?&gt;</code></p><h3>Customisation</h3><p>You can modify the look of your dropdown by using our new <a title="Suckerfish Dropdown CSS generator" href="http://pixopoint.com/suckerfish_css/">Multi-level Menu CSS Generator page</a>.  The generator has been designed with this plugin in mind, so just copy and paste the CSS code from the generator to the plugins options page.</p><p>If anyone out there would like a custom designed dropdown, then please get in touch with us via our <a title="Contact PixoPoint" href="http://pixopoint.com/contact/">contact page</a> for pricing information.</p><h3>Compatibility</h3><p>The menus (CSS sourced from generator page) have been tested (and work correctly) in the following browsers:</p><p>Mozilla Firefox Version 3.0<br /> Mozilla Firefox Version 2.0<br /> Mozilla Firefox Version 1.5<br /> Opera Version 9<br /> Safari Version 3.0<br /> Google Chrome<br /> Internet Explorer Version 8 RC2<br /> Internet Explorer Version 7.0<br /> Internet Explorer Version 6.0 (with Javascript on)<br /> Internet Explorer Version 5.5 (with Javascript on)<br /> Internet Explorer Version 5.0 (with Javascript on)</p><h3>Live Examples</h3><p>There is a list of live examples in our forum &#8230; <a href="http://pixopoint.com/forum/index.php?topic=357.0">live examples</a></p><h3>Credits</h3><p>Thanks to Patrick Griffiths and <a title="Dan Webb" href="http://www.danwebb.net/" target="_blank">Dan Webb</a> for <a title="HTML Dog Son of Suckerfish" href="http://www.htmldog.com/articles/suckerfish/dropdowns/" target="_blank">their article</a> which we used as a model for the CSS used in this plugin. And thanks to <a title="WordPress Garage" href="http://wordpressgarage.com/" target="_blank">Miriam Schwab</a> for writing the blog post which motivated us to create it.</p><h3>Support</h3><p>For support, please visit the <a href="http://pixopoint.com/forum/index.php?board=4.0">dropdown menus board</a> in our support forum.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/06/01/multi-level-navigation/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Simple CMS WordPress Plugin</title><link>http://pixopoint.com/2008/03/14/simplecms/</link> <comments>http://pixopoint.com/2008/03/14/simplecms/#comments</comments> <pubDate>Fri, 14 Mar 2008 08:43:26 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[cms]]></category> <category><![CDATA[Developers]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[simple cms]]></category><guid isPermaLink="false">http://ryanhellyer.net/2008/03/14/simplecms/</guid> <description><![CDATA[<a href="http://pixopoint.com/simplecms/"><img class="alignright size-thumbnail attachment wp-att-164" title="Simple CMS WordPress Plugin" src="http://pixopoint.com/uploads/ryans_simplecms-150x150.jpg" alt="" width="150" height="150" /></a>The Simple CMS WordPress plugin converts the WordPress blog tool into a basic CMS (Content Management System). Simple CMS removes all of the complicated blogging functionality which is not needed for a basic static website. This allows for easier use of the admin panel by non web designers.If you are a "WordPress Administrator" you will not see any difference, but if you log in as a "WordPress Editor" or below, you will see a vastly simplified administration panel suitable for simple static websites.<h3>Free Download</h3> <a title="Download Simple CMS WordPress Plugin Version 1.2.4" href="http://downloads.wordpress.org/plugin/ryans-simple-cms.zip">Simple CMS WordPress Plugin Version 1.2.4</a> ]]></description> <content:encoded><![CDATA[<p>Note: Support for the Simple CMS WordPress plugin has been discontinued. If you are interested in having this product upgraded for the latest version of WordPress then please <a href="http://pixopoint.com/contact/">contact us</a> for information about paid plugin development.</p><p><a href="http://pixopoint.com/uploads/ryans_simplecms.jpg"><img class="alignright size-thumbnail attachment wp-att-164" title="Simple CMS WordPress Plugin" src="http://pixopoint.com/uploads/ryans_simplecms-150x150.jpg" alt="" width="150" height="150" /></a>The Simple CMS WordPress plugin converts the WordPress blog tool into a basic CMS (Content Management System). Simple CMS removes all of the complicated blogging functionality which is not needed for a basic static website. This allows for easier use of the admin panel by non web designers.</p><p style="text-align: center"><a title="Ryans Simple CMS WordPress Plugin" href="http://ryanhellyer.net/wp-content/uploads/2008/03/ryans_simplecms.jpg"><img src="http://ryanhellyer.net/wp-content/uploads/2008/03/ryans_simplecms.jpg" alt="Ryans Simple CMS WordPress Plugin" /></a></p><h3>Free Download</h3><p><a title="Download Simple CMS WordPress Plugin" href="http://downloads.wordpress.org/plugin/ryans-simple-cms.zip">Simple CMS WordPress Plugin download</a></p><p><strong>Please note that this plugin only works with WordPress 2.5 or above</strong></p><h3>Demonstration</h3><p><a href="http://ryanhellyer.freehostia.com/wordpress4/wp-admin/" target="_blank"><strong>Click here to see the admin panel in action</strong></a><br /> Username: test<br /> Password: test<br /> <small>Note: The demo site is on an extremely slow server. The plugin will likely operate much faster and reliably on your own web host.</small></p><h3>Installing</h3><p>Simply upload the folder to your plugins directory, then head to the plugins page in your WordPress admin panel and activate the plugin.</p><p>If you are a &#8220;WordPress Administrator&#8221; you will not see any difference, but if you log in as a &#8220;WordPress Editor&#8221; or below, you will see a vastly simplified administration panel suitable for simple static websites.</p><p>To modify the items shown in the admin menu, go to the &#8220;Simple CMS&#8221; options page in the &#8220;Settings&#8221; menu.</p><h3>Theming</h3><p>To help with developing themes for static websites powered by WordPress, I&#8217;ve released the <a title="SimpleCMS WordPress Theme" href="http://pixopoint.com/simplecms_theme/">Simple CMS WordPress Theme</a> (<a title="SimpleCMS WordPress Theme Demo" href="http://pixopoint.com/demo/wordpress/index.php?wptheme=SimpleCMS%20Theme" target="_blank">demo</a>).</p><p>The plugin doesn&#8217;t do anything exotic, the original code is still there, it is just hidden from view via CSS. Users will still be able to access the hidden areas of the admin panel if they know what they are doing.</p><h3>Support</h3><p>Visit the <a href="http://pixopoint.com/forum/index.php?board=3.0">Simple CMS support board</a> for help, advice or further information about the Simple CMS plugin.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/03/14/simplecms/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>WordPress Dropdown Menu Plugin</title><link>http://pixopoint.com/2008/01/14/suckerfish-wordpress-plugin/</link> <comments>http://pixopoint.com/2008/01/14/suckerfish-wordpress-plugin/#comments</comments> <pubDate>Mon, 14 Jan 2008 12:35:47 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Plugins]]></category> <category><![CDATA[Developers]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[suckerfish]]></category><guid isPermaLink="false">http://ryanhellyer.net/2008/01/14/suckerfish-wordpress-plugin/</guid> <description><![CDATA[This plugin has been superceded by the '<a href="http://pixopoint.com/multi-level-navigation/">Multi-level Navigation Plugin</a>'.]]></description> <content:encoded><![CDATA[<p><strong><em>Note:</em> This plugin has been superceded by the &#8216;<a href="http://pixopoint.com/products/pixopoint-menu/">PixoPoint Menu Plugin</a>&#8216;.</strong></p><p>This plugin generates the code necessary to create a Son of Suckerfish WordPress dropdown menu.</p><h3>Download</h3><p>The plugin is available for download here &#8230; <a title="Suckerfish WordPress Plugin" href="http://downloads.wordpress.org/plugin/ryans-suckerfish-wordpress-dropdown-menu.zip">Suckerfish WordPress Plugin</a></p><h3>Installation</h3><p>Add the following code wherever you want the dropdown to appear in your theme (usually header.php) and activate the plugin in your admin panel.</p><p>This code adds a button for your home page and dropdowns for your Pages, Archives, Categories and Blogroll.<br /> <code>&lt;?php if (function_exists('suckerfish')) {suckerfish();} ?&gt;</code></p><h3>Customisation</h3><p>You can modify the look of your dropdown by using our new <a href="http://pixopoint.com/suckerfish_css/">Online Suckerfish Dropdown CSS Generator</a>. The generator has been designed with this plugin in mind, so just copy and paste the CSS code from the generator to the plugins options page.</p><h3>Credits</h3><p>Thanks to Patrick Griffiths and <a title="Dan Webb" href="http://www.danwebb.net/" target="_blank">Dan Webb</a> for <a title="HTML Dog Son of Suckerfish" href="http://www.htmldog.com/articles/suckerfish/dropdowns/" target="_blank">their article</a> which we used as a model for the CSS used in this plugin. And thanks to <a title="WordPress Garage" href="http://wordpressgarage.com/" target="_blank">Miriam Schwab</a> for writing the blog post which motivated us to create it.</p><h3>Support</h3><p>For support, please visit the <a href="http://pixopoint.com/forum/index.php?board=4.0">dropdown menus board</a> in our support forum. Please note that many new features are available in the &#8216;<a href="http://pixopoint.com/multi-level-navigation/">Multi-level Navigation Plugin</a>&#8216; so you should check that out before asking any questions about this plugin.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/01/14/suckerfish-wordpress-plugin/feed/</wfw:commentRss> <slash:comments>240</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: pixopoint.com @ 2012-05-22 15:13:21 -->
