<?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; dropdown</title> <atom:link href="http://pixopoint.com/tag/dropdown/feed/" rel="self" type="application/rss+xml" /><link>http://pixopoint.com</link> <description>Specialists in the design, coding and implementation of websites</description> <lastBuildDate>Mon, 16 Jan 2012 02:51:32 +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>Animating your dropdown menu</title><link>http://pixopoint.com/2010/01/11/animating-menus/</link> <comments>http://pixopoint.com/2010/01/11/animating-menus/#comments</comments> <pubDate>Mon, 11 Jan 2010 22:00:36 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[animation]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[jquery]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[superfish]]></category><guid isPermaLink="false">http://pixopoint.com/?p=691</guid> <description><![CDATA[In our IE Hovers post we outlined how the Superfish jQuery plugin can be used to create a smooth flowing animated effect for your dropdown menu. However the Superfish script is reasonably large and many people don&#8217;t require the various options which are available with [...]]]></description> <content:encoded><![CDATA[<p>In our <a href="http://pixopoint.com/ie-hovers/">IE Hovers post</a> we outlined how the Superfish jQuery plugin can be used to create a smooth flowing animated effect for your dropdown menu. However the Superfish script is reasonably large and many people don&#8217;t require the various options which are available with the Superfish plugin. So here is an explanation of a new way to create smooth animated dropdown menus with only a few lines of code (plus jQuery).</p><p>The following code will produce a clean smooth flowing animation effect just like you can see in the menu  above for our own site.</p><pre class="brush: jscript; title: ;">
function suckerfishmenu(){
	$('#suckerfishnav ul').css({display:'none'}); // Opera Fix
	$('#suckerfishnav li').hover(function(){
		$(this).find('ul:first').css({display:'none'}).slideDown(300);
	},function(){
		$(this).find('ul:first').css({display:'none'});
	});
}
 $(document).ready(function(){
	suckerfishmenu();
});
</pre><p>To make this work, you simply need to insert the above code after you load jQuery and between the &lt;head&gt; tags for your page and use a dropdown menu with an ID of #suckerfishnav. Make sure you reference the jQuery.js file correctly (<a href="http://jquery.com/">available here</a>). If you are using WordPress, then you will want to make sure you are loading jQuery via the <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script">enqueue method</a> to avoid clashes with plugins which use jQuery and add <em>var $ = jQuery;</em> to ensure that jQuery works with the non-conflict mode of the version of jQuery version bundled with WordPress.</p><p>If all of that seems too complicated, don&#8217;t despair as the new version coming soon of our <a href="http://pixopoint.com/products/pixopoint-menu/">PixoPoint Menu plugin</a> has this new animation method built in so that you won&#8217;t need to touch any code to get it working.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2010/01/11/animating-menus/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>What the heck are Superfish and Suckerfish?</title><link>http://pixopoint.com/2009/12/15/superfish-suckerfish/</link> <comments>http://pixopoint.com/2009/12/15/superfish-suckerfish/#comments</comments> <pubDate>Tue, 15 Dec 2009 06:22:02 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[javascript]]></category> <category><![CDATA[jquery]]></category> <category><![CDATA[suckerfish]]></category> <category><![CDATA[superfish]]></category><guid isPermaLink="false">http://pixopoint.com/?p=668</guid> <description><![CDATA[Many people get confused when working with our WordPress menu plugins and CSS generator as to what exactly &#8220;Suckerfish&#8221; is and what the difference is between it and &#8220;Superfish&#8220;. Most of you will never need to understand the difference, but for those of you keen to dive [...]]]></description> <content:encoded><![CDATA[<p>Many people get confused when working with our <a href="http://pixopoint.com/products/pixopoint-menu/">WordPress menu plugins</a> and <a href="http://pixopoint.com/suckerfish_css/">CSS generator</a> as to what exactly &#8220;Suckerfish&#8221; is and what the difference is between it and &#8220;<a href="http://users.tpg.com.au/j_birch/plugins/superfish/">Superfish</a>&#8220;. Most of you will never need to understand the difference, but for those of you keen to dive in and either custom build your own menu or tinker around under the hood of our plugins, here is a brief run-down on what they are and how they work.</p><h3>Suckerfish</h3><p>The original Suckerfish javascript code was posted on <a href="http://www.alistapart.com/articles/dropdowns/">A List Apart</a> by Patrick Griffiths and Dan Webb. As outlined in our <a href="http://pixopoint.com/ie-hovers/">:hover pseudo class post</a>, it simply adds support for the same effect as the :hover pseudo class in Internet Explorer 6 and older browsers.</p><p>The following code is based on the most popular form of the Suckerfish script, the &#8220;Son of Suckerfish&#8221; by <a href="http://htmldog.com/articles/suckerfish/dropdowns/">HTML Dog</a>. This code works with any unordered list with an ID of #suckerfishnav.</p><pre class="brush: jscript; title: ;">sfHover = function() {
var sfEls = document.getElementById(&quot;suckerfishnav&quot;).getElementsByTagName(&quot;LI&quot;);
for (var i=0; i&amp;lt;sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=&quot; sfhover&quot;;
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(&quot; sfhover\\b&quot;), &quot;&quot;);
}
}
}
if (window.attachEvent) window.attachEvent(&quot;onload&quot;, sfHover);
</pre><p><img class="aligncenter size-full wp-image-296" title="Aqua Vaccinium theme menu" src="http://pixopoint.com/uploads/multilevel_aqua_thumb.png" alt="" width="460" height="345" /></p><p>The following code is more suitable for situations in which you need support for multiple dropdown menus on the same page as it works on any unordered list with a class of .sf-hover (ie: you can&#8217;t have two menus with the same ID therefore this class system works better in such situations).</p><pre class="brush: jscript; title: ;">
function sfHoverEvents(sfEls) {
var len = sfEls.length;
for (var i=0; i
sfEls[i].onmouseover=function() {
this.className+=&quot; sfhover&quot;;
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(&quot; sfhover&quot;, &quot;&quot;);
}
}
}
function sfHover() {
var ULs = document.getElementsByTagName(&quot;UL&quot;);
var len = ULs.length;
for(var i=0;i
if(ULs[i].className.indexOf(&quot;sf-menu&quot;) != -1)
sfHoverEvents(ULs[i].getElementsByTagName(&quot;LI&quot;));
}
}
if (window.attachEvent) window.attachEvent(&quot;onload&quot;, sfHover);&lt;/code&gt;
</pre><p><img class="aligncenter size-full wp-image-413" title="Dunedin Ice Hockey Association sites menu" src="http://pixopoint.com/uploads/pixopointmenu-demo1.jpg" alt="" width="515" height="260" /></p><p><strong>Superfish</strong></p><p><a href="http://users.tpg.com.au/j_birch/plugins/superfish/">Superfish</a> is a plugin for the jQuery javascript framework. Unlike the simple Suckerfish methods outlined above, Superfish adds many more features to your menu than just :hover pseudo class support in IE6.</p><p>Some features of the Superfish jQuery plugin are:</p><ul><li>Timed delay on mouseout to be more forgiving of mouse-piloting errors.</li><li>Animation of sub-menu reveal. The animation speed is customisable</li><li>Keyboard accessibility. Tab through the links and the relevant sub-menus are revealed and hidden as needed.</li><li>Supports the hoverIntent plugin. Superfish automatically detects the presence of Brian Cherne’s hoverIntent plugin and uses its advanced hover behaviour for the mouseovers (mouseout delays are handled by Superfish regardless of the presence of hoverIntent).</li><li>Indicates the presence of sub-menus by automatically adding arrow images to relevant anchors. Arrows are fully customisable via CSS.</li></ul><p>To see a demo of the Superfish plugin in action, hover over the menu of the <a href="http://dunedinicehockey.co.nz/">Dunedin Ice Hockey Association</a>.</p><h3>HTML</h3><p>We will post another blog post soon outlining best practices and how to create your own custom HTML for your menu.</p><h3>Other scripts</h3><p>There are many other alternative scripts out there too. If you have any favourites, please post a link to them in the comments.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2009/12/15/superfish-suckerfish/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Revolution Generated &#8211; magazine style template</title><link>http://pixopoint.com/2009/01/15/revolution-generated/</link> <comments>http://pixopoint.com/2009/01/15/revolution-generated/#comments</comments> <pubDate>Fri, 16 Jan 2009 04:00:54 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[Generator]]></category> <category><![CDATA[gpl]]></category> <category><![CDATA[magazine]]></category> <category><![CDATA[revolution]]></category> <category><![CDATA[template]]></category><guid isPermaLink="false">http://pixopoint.com/?p=283</guid> <description><![CDATA[We have received numerous requests for the implementation of a magazine style templates into the PixoPoint template generator. We originally intended to launch an entirely new magazine style theme of our own creation, however Brian Gardner of the Revolution themes recently announced a new site, [...]]]></description> <content:encoded><![CDATA[<p>We have received numerous requests for the implementation of a magazine style templates into the <a title="WordPress theme template generator" href="http://pixopoint.com/?generator=on">PixoPoint template generator</a>. We originally intended to launch an entirely new magazine style theme of our own creation, however Brian Gardner of the Revolution themes recently announced a new site, <a href="http://revolutiontwo.com/">RevolutionTwo.com</a>, which features a wide range of great magazine style themes which are all <a title="GPL Licensing information" href="http://www.gnu.org/copyleft/gpl.html">GPL licensed</a>. Since they are <a title="GPL Licensing information" href="http://www.gnu.org/copyleft/gpl.html">GPL licensed</a> we have been allowed to implement these directly into the <a title="WordPress theme template generator" href="http://pixopoint.com/?generator=on">PixoPoint template generator</a>. Instead of having to modify the Revolution themes code to create the magazine style theme that you want, you can simply modify a few options in the template generator, hit the export button and have your very own magazine style WordPress theme!</p><h3>Revolution Generated</h3><div id="attachment_236" class="wp-caption aligncenter" style="width: 470px"><a href="http://pixopoint.com/uploads/revolutiongenerated_full"><img class="size-full wp-image-232" title="wpslimbox2_1" src="http://pixopoint.com/uploads/revolutiongenerated_thumb.png" alt="Revolution Generated template for the PixoPoint template generator" width="460" height="390" /></a><p class="wp-caption-text">Revolution Generated template for the PixoPoint template generator</p></div><p>The design of the Revolution Generated template is based on the <a title="Revolution Church" href="http://www.revolutiontwo.com/demo/church.html">Revolution Church theme</a>. This is a great design and we have ported it over to look almost exactly like the original design. Since we expect most people to use the design for non-church themes we have removed some of the &#8216;churchy&#8217; styling on it and replaced them with a more generic design which will hopefully be more suitable for those of you looking to modify it for your own purposes.</p><h3>Demo</h3><p>You can see a live preview of the theme in the template generator &#8230; <a href="http://pixopoint.com/?generator=preview_revolutiongenerated">Live preview demo</a></p><p><strong>Note:The template editor has been removed for the time being. It needs some major updates which will be available at a later date.</strong></p><p>Or if you want to dive right in and start editing &#8230; <a href="http://pixopoint.com/">Start editing Revolution Generated (link no longer works)</a></p><p>To download the theme, go to &#8216;Upload/Save&#8217; and choose &#8216;Export to WordPress&#8217; in the <a href="http://pixopoint.com/">editing area</a>.</p><h3>Improvements over previous magazine themes</h3><p>A common complaint heard from users of magazine themes is they have to add a custom field for every post they create. We have alleviated this problem by allowing you to specify a default image URL in the themes WordPress admin page for each section of the home page. When a default image URL is specified, that image will be shown in the particular home page area whenever you forget (or can&#8217;t be bothered) to add a custom field.</p><p>We have also made it easier to control what content is shown on the home page. Instead of making modifications to the theme code, you can now alter which categories of posts and how many characters from those posts are displayed in the various sections of the home page directly from your WordPress admin page.</p><p>These changes are all GPL licensed, so feel free to use them in your own themes. Links back to our site are much appreciated though <img src='http://pixopoint.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><h3>Credits</h3><p>All credit for the styling of this theme goes to Brian Gardner of <a href="http://www.revolutiontwo.com/">RevolutionTwo.com</a> who created the <a href="http://www.revolutiontwo.com/demo/church.html/">Revolution Church</a> theme which this template was based on.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2009/01/15/revolution-generated/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>New Aqua Vaccinium WordPress theme</title><link>http://pixopoint.com/2008/11/30/new-aqua-vaccinium-wordpress-theme/</link> <comments>http://pixopoint.com/2008/11/30/new-aqua-vaccinium-wordpress-theme/#comments</comments> <pubDate>Mon, 01 Dec 2008 01:49:54 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[aqua vaccinium]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[Generator]]></category> <category><![CDATA[template]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://pixopoint.com/?p=199</guid> <description><![CDATA[The Aqua Vaccinium template features a smooth blue and green design and has a prominent dropdown menu built in (no plugin needed). The template was originally released as a standalone theme, but has been incorporated as one of the standard templates in the PixoPoint Template [...]]]></description> <content:encoded><![CDATA[<p>The Aqua Vaccinium template features a smooth blue and green design and has a prominent dropdown menu built in (no plugin needed). The template was <a title="Aqua Vaccinium WordPress theme" href="http://pixopoint.com/aqua-vaccinium-wordpress-theme/">originally released</a> as a standalone theme, but has been incorporated as one of the standard templates in the <a href="http://pixopoint.com/generator/">PixoPoint Template Generator</a>.</p><p><img class="aligncenter size-full attachment wp-att-162" title="Aqua Vaccinium WordPress theme" src="http://pixopoint.com/uploads/aquavaccinium1.png" alt="Aqua Vaccinium WordPress theme" width="439" height="442" /></p><h3>Download template as a WordPress theme</h3><p><a title="Download Aqua Vaccinium" href="http://pixopoint.com/uploads/aqua-vaccinium.zip">Download Aqua Vaccinium WordPress theme</a></p><h3>The big blue bar</h3><p>The blue section (below the main menu) is controlled via the &#8216;Main menu shadow&#8217; section in the &#8216;Main Menu&#8217; box in the template generator control panel.</p><p>If you require any (paid) customisations specific to your site, please get in touch via our <a href="http://pixopoint.com/contact/">contact form</a>.</p><h3>Naming</h3><p>The word Aqua came from the mixture of the blue and green tones of the design. The name Vaccinium is the genus for a variety of berries including blue berries which we baked a pie for in honour of the new theme.</p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/11/30/new-aqua-vaccinium-wordpress-theme/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>Aqua Vaccinium WordPress theme</title><link>http://pixopoint.com/2008/02/23/aqua-vaccinium-wordpress-theme/</link> <comments>http://pixopoint.com/2008/02/23/aqua-vaccinium-wordpress-theme/#comments</comments> <pubDate>Sat, 23 Feb 2008 16:35:33 +0000</pubDate> <dc:creator>Ryan</dc:creator> <category><![CDATA[Templates]]></category> <category><![CDATA[aqua vaccinium]]></category> <category><![CDATA[code]]></category> <category><![CDATA[customisation]]></category> <category><![CDATA[Developers]]></category> <category><![CDATA[dropdown]]></category> <category><![CDATA[quote]]></category> <category><![CDATA[suckerfish]]></category> <category><![CDATA[theme]]></category><guid isPermaLink="false">http://ryanhellyer.net/2008/02/23/aqua-vaccinium-wordpress-theme/</guid> <description><![CDATA[<img src="http://pixopoint.com/uploads/aquavaccinium1-150x150.png" alt="Aqua Vaccinium WordPress theme" title="Aqua Vaccinium WordPress theme" width="150" height="150" class="alignright size-thumbnail attachment wp-att-162" />Aqua Vaccinium features a smooth blue and green theme and has a prominent Suckerfish dropdown menu built in (no plugin needed).Visit our <a href="http://pixopoint.com/demo/wordpress/" title="PixoPoint WordPress theme demo site">WordPress theme demo site</a> to see Aqua Vaccinium in action.We’ve tried to keep the theming as simple as possible to allow for easy customisation. There are only five template files, plus images, javascript and css files. The original build file for the logo (PSD format) is included, so you can edit it to match your own site name.The main dropdown menu is set to display categories by default, but you can insert other pages into your dropdown if you like. The blue section (below the main menu) displays either the blog description or the category description depending on what page you are on.]]></description> <content:encoded><![CDATA[<p>The &#8220;Aqua Vaccinium&#8221; WordPress theme was originally intended for use on a clients site, but they have since decided to go with a red theme and use Dreamweaver (ick!) instead of WordPress, so we have decided to release this theme to you for free.</p><p>Aqua Vaccinium features a smooth blue and green theme and has a prominent Suckerfish dropdown menu built in (no plugin needed).</p><p><img class="aligncenter size-full attachment wp-att-162" title="Aqua Vaccinium WordPress theme" src="http://pixopoint.com/uploads/aquavaccinium1.png" alt="Aqua Vaccinium WordPress theme" width="439" height="442" /></p><h3>Live Demo</h3><p>Visit our <a title="Aqua Vaccinium demo" href="http://pixopoint.com/demo/wordpress/index.php?wptheme=Aqua%20Vaccinium">WordPress theme demo site</a> to see Aqua Vaccinium in action.</p><h3>Download</h3><p><a title="Aqua Vaccinium download" href="http://pixopoint.com/uploads/aquavaccinium.zip">Aqua Vaccinium download</a></p><h3>Bugs/feature requests</h3><p>If you find a bug or would like an extra feature which isn&#8217;t present in the standard Aqua Vaccinium theme, feel free to leave a comment in our <a href="http://pixopoint.com/forum/index.php?board=1.0">themes forum</a>.</p><p>If you require any customisations specific to your site, please get in touch via our <a href="http://pixopoint.com/contact/">contact form</a>.</p><h3>Theme files</h3><p>We&#8217;ve tried to keep the theming as simple as possible to allow for easy customisation. There are only five template files, plus images, javascript and css files. I&#8217;ve included the original build file for the logo (PSD format), so you can edit it to match your own site name.</p><p>The main dropdown menu is set to display categories by default, but you can insert other pages into your dropdown if you like (leave a post in our <a href="http://pixopoint.com/forum/index.php?board=1.0">themes forum</a> if you need help with this).</p><p>The blue section (below the main menu) displays either the blog description or the category description depending on what page you are on. If the blog or category description is missing, this will be left blank.</p><h3>Naming</h3><p>The word Aqua came from the mixture of the blue and green tones of the design. The name Vaccinium is the genus for a variety of berries including blue berries which we baked a pie for in honour of the new theme.</p><p><a href="http://pixopoint.com/aqua-vaccinium-wordpress-theme/"><strong>more information »</strong></a></p> ]]></content:encoded> <wfw:commentRss>http://pixopoint.com/2008/02/23/aqua-vaccinium-wordpress-theme/feed/</wfw:commentRss> <slash:comments>6</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-02-03 22:03:13 -->
