<?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; menu</title>
	<atom:link href="http://pixopoint.com/tag/menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://pixopoint.com</link>
	<description>Specialists in the design, coding and implementation of websites</description>
	<lastBuildDate>Thu, 29 Jul 2010 07:33:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</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;">
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>Free support for menus</title>
		<link>http://pixopoint.com/2009/12/30/free-support-menus/</link>
		<comments>http://pixopoint.com/2009/12/30/free-support-menus/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 14:21:50 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://pixopoint.com/?p=888</guid>
		<description><![CDATA[Since the inception of PixoPoint.com, we have been providing free support in our support forum for our menu plugins and CSS generator. Later, we began offering our Premium Support service, which gives much faster response times and we are happy to answer even very complex [...]]]></description>
			<content:encoded><![CDATA[<p>Since the inception of <a href="http://pixopoint.com/">PixoPoint.com</a>, we have been providing free support in our <a href="http://pixopoint.com/forum/">support forum</a> for our <a href="http://pixopoint.com/products/pixopoint-menu/">menu plugin</a>s and <a href="http://pixopoint.com/products/suckerfish_css/">CSS generator</a>. Later, we began offering our <a href="http://pixopoint.com/services/premium-support/">Premium Support service</a>, which gives much faster response times and we are happy to answer even very complex questions or even write extensive code to help out our <a href="http://pixopoint.com/services/premium-support/">Premium Support members</a>.</p>
<p>However, in order to keep maintaining the service, we need those requesting free support to follow a few simple guidelines or we will need to move to a purely paid support system (which we would like to avoid). In the past we attempted to answer every question which was sent our direction, but as the number of support requests has grown, this has become virtually impossible to maintain due to the shear number of questions.</p>
<p>To help reduce our workload, it would be great if you could follow these guidelines before posting any free support questions in our forum (these do not apply to <a href="http://pixopoint.com/services/premium-support/">Premium Support members</a>):</p>
<h3>Things to let us know in your post</h3>
<ul>
<li>Are you using one of our WordPress plugins? If so, which one?</li>
<li>Where is your CSS? (don&#8217;t paste it, just post a link to it)</li>
<li>What modifications have you made to the CSS?</li>
<li>What browsers are you having problems with?</li>
<li>What is the URL for your site?</li>
</ul>
<p>If you didn&#8217;t paste your CSS into a WordPress plugins&#8217; settings page, then let us know which <strong>exact</strong> file it is in (searching through a dozen CSS files in your theme trying to find your menu code is very time consuming).</p>
<h3>Things which prevent us from helping you</h3>
<ul>
<li>Not providing a link to the problem.</li>
<li>Only providing HTML and CSS code snippets (without a link).</li>
<li>Not telling us you modified part of your CSS, plugin or theme.</li>
</ul>
<p>We can not answer vague questions about your menu or theme not working, we need to see the problem in action so please provide a link to it. <strong>Note:</strong> you don&#8217;t need to provide an example of your <strong>whole</strong> site just to demonstrate a problem. If you don&#8217;t want to leave your site in a broken state, then you can simply create a static HTML file of your problem and upload that instead. &#8220;Save as&#8221; in most browsers will do the job, or you can copy and paste the source code.</p>
<h3>Email Support</h3>
<p>We only offer email support to our <a href="http://pixopoint.com/services/premium-support/">Premium Support members</a>. By keeping all free support questions open to the public, we hope that others will be able to learn form the answers.</p>
<h3>Blog Post Support</h3>
<p>We do not provide support in our blog posts. All free support questions must be posted in our <a href="http://pixopoint.com/forum/">support forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixopoint.com/2009/12/30/free-support-menus/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bart Simpson uses the PixoPoint menu plugin</title>
		<link>http://pixopoint.com/2009/11/24/nancy-cartwright/</link>
		<comments>http://pixopoint.com/2009/11/24/nancy-cartwright/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 03:26:13 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[bart simpson]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[premium support]]></category>

		<guid isPermaLink="false">http://pixopoint.com/?p=629</guid>
		<description><![CDATA[Marty Kassowitz of Interest Factory contacted us requesting assistance in creating a new menu for the official website of Emmy Award-winner Nancy Cartwright. Nancy is best known as the voice of yellow coloured spikey haired underachiever Bart Simpson, but also gives voice to Nelson Muntz, [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_637" class="wp-caption alignright" style="width: 266px"><a href="http://nancycartwright.com/"><img class="size-full wp-image-637" title="nancy_cartwright_profile" src="http://pixopoint.com/uploads/nancy_cartwright_profile-e1258961690710.jpg" alt="" width="256" height="258" /></a><p class="wp-caption-text">Nancy Cartwright and her alter-ego Bart Simpson</p></div>
<p>Marty Kassowitz of <a href="http://interestfactory.com/">Interest Factory</a> contacted us requesting assistance in creating a new menu for the official website of Emmy Award-winner <a href="http://nancycartwright.com/">Nancy Cartwright</a>. Nancy is best known as the voice of yellow coloured spikey haired underachiever Bart Simpson, but also gives voice to Nelson Muntz, Ralph Wiggum and Todd Flanders on the Simpsons TV show as well as Chuckie from Rugrats and many other familiar animated TV characters.</p>
<p>Marty signed up for our <a href="http://pixopoint.com/services/premium-support/">Premium Support deal</a>, sent us the exact specifications, including an image of what was intended as the final design of the menu. We created a mockup of the design and once approved by Marty, we assisted with the integration of the menu into Nancy&#8217;s new WordPress powered site. You can see the final result below.</p>
<div id="attachment_543" class="wp-caption aligncenter" style="width: 490px"><a href="http://nancycartwright.com/"><img class="size-medium wp-image-543" title="Nancy Cartwright" src="http://pixopoint.com/uploads/nancycartwright-480x337.jpg" alt="Nancy Cartwright" width="480" height="337" /></a><p class="wp-caption-text">Nancy Cartwright&#39;s website demonstrating the custom-coded dropdown menu created by PixoPoint.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://pixopoint.com/2009/11/24/nancy-cartwright/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Removing page URLs in PixoPoint Menu plugin for WordPress</title>
		<link>http://pixopoint.com/2009/07/26/removing-page-urls-in-pixopoint-menu-plugin-for-wordpress/</link>
		<comments>http://pixopoint.com/2009/07/26/removing-page-urls-in-pixopoint-menu-plugin-for-wordpress/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 05:30:30 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[pages]]></category>

		<guid isPermaLink="false">http://pixopoint.com/?p=416</guid>
		<description><![CDATA[We have been asked many times before to provide a way to remove the links of parent pages in our menu plugins. Today one of our Premium Support members requested this feature, so we added support for it into our latest release for them. Simply [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pixopoint.com/uploads/pageswidget.png"><img class="size-full wp-image-415 alignright" title="PixoPoint Menu pages widget" src="http://pixopoint.com/uploads/pageswidget.png" alt="PixoPoint Menu pages widget" width="168" height="272" /></a></p>
<p>We have been asked many times before to provide a way to remove the links of parent pages in our menu plugins. Today one of our <a href="http://pixopoint.com/premium_support/">Premium Support members</a> requested this feature, so we added support for it into our latest release for them. Simply add a comma separated list of the page IDs you want the URLs removed for into the pulldown for the &#8216;Pages&#8217; widget in the plugins admin page and they will be removed from your menu.</p>
<p>Visit the <a href="http://wordpress.org/extend/plugins/pixopoint-menu/">download page on WordPress.org</a> to get hold of the latest copy or use the automatic upgrade feature in your WordPress admin panel. If you find any bugs, please report them in our <a href="http://pixopoint.com/forum/index.php?board=4.0">Menu Support forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixopoint.com/2009/07/26/removing-page-urls-in-pixopoint-menu-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>16</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>
	</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/11 queries in 0.014 seconds using disk

Served from: pixopoint.com @ 2010-07-31 03:32:14 -->