<?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>Gisoku Budo - musings of an amputee martial artist</title>
	<atom:link href="http://www.gisoku-budo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gisoku-budo.com</link>
	<description></description>
	<lastBuildDate>Fri, 12 Mar 2010 02:21:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically</title>
		<link>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-3-%e2%80%93-customising-the-wp_list_pages-navigation-menu-drop-downs-to-insert-elements-between-each-menu-heading-dynamically/</link>
		<comments>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-3-%e2%80%93-customising-the-wp_list_pages-navigation-menu-drop-downs-to-insert-elements-between-each-menu-heading-dynamically/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 02:21:53 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Wordpress/system stuff]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[drop-downs]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[Wordpress forums]]></category>
		<category><![CDATA[wp_list_pages]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=522</guid>
		<description><![CDATA[This is the last bit I&#8217;ll be writing on some customised features I&#8217;ve added to my theme &#8211; again, because the community (especially in this instance) has been so good to me, the least I can do is return the favour by publicly posting the code/solution to my problem.
When I built my template, I designed [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-2-%e2%80%93-page-elements-appearing-in-front-of-pop-up-images-in-the-nextgen-gallery-lightbox-plugins/' rel='bookmark' title='Permanent Link: Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins'>Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins</a></li>
<li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-1-warning-cannot-modify-header-information-headers-already-sent-by/' rel='bookmark' title='Permanent Link: Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;'>Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This is the last bit I&#8217;ll be writing on some customised features I&#8217;ve added to my theme &#8211; again, because the community (especially in this instance) has been so good to me, the least I can do is return the favour by publicly posting the code/solution to my problem.</p>
<p>When I built my template, I designed it so that between each menu item sits a div to create a space between menu items. While this is easy enough to do in static HTML, I needed a solution that would allow me to do this for my menu system in Wordpress through using the wp_list_pages function. Now, it wouldn&#8217;t be too hard to programmatically add the div in if the menu was operating as a single unordered (&lt;ul&gt;) list, but I was also leveraging some jQuery to render the drop-down menu system for my sub-menu items two more levels deep; thus, simply adding divs as wrappers with list item tags with the wp_list_pages function wouldn&#8217;t work, as the divs would also get added to each of the sub-menu list items.</p>
<p>Ideally, what I needed was a script to treat the menu as two objects &#8211; the first would be the top-level navigation, the second would be the two-levels of sub-menu navigation that fly out as drop-downs. Once the output from the database has been extracted into two objects for manipulation within the code, the first object will require an extra div to be added in front of the text block. We add it to the <i>front</i> of each text block so that there isn&#8217;t a div left over and placed after the final top-level list item, because that looks messy.</p>
<p>For the second object, all the list items cascade out into sub-lists within the primary menu item. These list items have no additional HTML inserted between elements, and styling them is handled by all the CSS coded up when the template was initially rendered as static HTML.</p>
<p>This of course creates issues with adding in a link back to &#8216;Home&#8217; via the Wordpress widgets &#8211; to get around it, I simply added a static link back to home in the header.php file. Crude, but effective.</p>
<p>Not being too cluey with PHP (I&#8217;m still on my training wheels!), <a href="http://wordpress.org/support/topic/360306">I took my situation to the Wordpress forums</a> and received some fantastic assistance by one of the members on there, vtxyzzy. The following is the eventual code that resulted from our discussion, with vtxyzzy creating the solution whilst I made a couple of tweaks to fix some of the bugs:</p>
<h4>Code:</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.gisoku-budo.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=522&amp;download=GisokuBudoWPFixesPt3-DropdownMenuStyling.txt">GisokuBudoWPFixesPt3-DropdownMenuStyling.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5223"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code" id="p522code3"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">// Custom menu, author: vtxyzzy; source:  http://wordpress.org/support/topic/360306; minor corrective alts by GisokuBudo, see thread for details</span>
	<span style="color: #000088;">$my_pages</span> <span style="color: #339933;">=</span> wp_list_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'echo=0&amp;depth=3&amp;title_li=&amp;exclude=313'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$parts</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_split"><span style="color: #990000;">preg_split</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/(&lt;ul|&lt;li|&lt;\/ul&gt;)/'</span><span style="color: #339933;">,</span><span style="color: #000088;">$my_pages</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">,</span>PREG_SPLIT_DELIM_CAPTURE<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$insert</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;li class=&quot;nav-menu-divider&quot;&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$newmenu</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$level</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$parts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$part</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;ul'</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$part</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #339933;">++</span><span style="color: #000088;">$level</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;/ul&gt;'</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$part</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #339933;">--</span><span style="color: #000088;">$level</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;li'</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$part</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$level</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #000088;">$newmenu</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$insert</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
		<span style="color: #000088;">$newmenu</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$part</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$newmenu</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>In the code you&#8217;ll notice the $insert function which adds the dividers between each entry in the top-level menu, and leaves the remainder without touching them. Very clever, and certainly isn&#8217;t anything I could have achieved without outside help!</p>
<p>So, incorporating this function into my header.php along with the static link back to the homepage looks like this:</p>
<h4>header.php:</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.gisoku-budo.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=522&amp;download=GisokuBudoWPFixesPt3-HeaderCode.txt">GisokuBudoWPFixesPt3-HeaderCode.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5224"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
</pre></td><td class="code" id="p522code4"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>ul id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;nav-menu&quot;</span><span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/&quot;</span><span style="color: #339933;">&gt;</span>Home<span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>li<span style="color: #339933;">&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">// Custom menu, author: vtxyzzy; source:  http://wordpress.org/support/topic/360306; minor corrective alts by GisokuBuo, see thread for details</span>
		<span style="color: #000088;">$my_pages</span> <span style="color: #339933;">=</span> wp_list_pages<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'echo=0&amp;depth=3&amp;title_li=&amp;exclude=313'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$parts</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_split"><span style="color: #990000;">preg_split</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/(&lt;ul|&lt;li|&lt;\/ul&gt;)/'</span><span style="color: #339933;">,</span><span style="color: #000088;">$my_pages</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">,</span>PREG_SPLIT_DELIM_CAPTURE<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$insert</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;li class=&quot;nav-menu-divider&quot;&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$newmenu</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$level</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$parts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$part</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;ul'</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$part</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #339933;">++</span><span style="color: #000088;">$level</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;/ul&gt;'</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$part</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #339933;">--</span><span style="color: #000088;">$level</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
			<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;li'</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$part</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$level</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #000088;">$newmenu</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$insert</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
			<span style="color: #000088;">$newmenu</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$part</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$newmenu</span><span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #339933;">&lt;/</span>ul<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Feel free to use the code if you feel it might prove useful to your site. There&#8217;s no need to link back/credit, but I wouldn&#8217;t mind if you left the comment in the code, posted a comment on the blog or <a href="/contact/">send me a message</a> to let me know if you&#8217;ve used it as I&#8217;d love to see other people&#8217;s use of this great little function!</p>
<p>&#8230; and that&#8217;s the end of the technical/Wordpress stuff! Expect normal programming to resume form next week, finally! <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2010%2F03%2Fwordpress-fixes-part-3-%25e2%2580%2593-customising-the-wp_list_pages-navigation-menu-drop-downs-to-insert-elements-between-each-menu-heading-dynamically%2F&amp;linkname=Wordpress%20fixes%20part%203%20%E2%80%93%20Customising%20the%20wp_list_pages%20navigation%20menu%20drop-downs%20to%20insert%20elements%20between%20each%20menu%20heading%20dynamically"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-2-%e2%80%93-page-elements-appearing-in-front-of-pop-up-images-in-the-nextgen-gallery-lightbox-plugins/' rel='bookmark' title='Permanent Link: Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins'>Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins</a></li>
<li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-1-warning-cannot-modify-header-information-headers-already-sent-by/' rel='bookmark' title='Permanent Link: Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;'>Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-3-%e2%80%93-customising-the-wp_list_pages-navigation-menu-drop-downs-to-insert-elements-between-each-menu-heading-dynamically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins</title>
		<link>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-2-%e2%80%93-page-elements-appearing-in-front-of-pop-up-images-in-the-nextgen-gallery-lightbox-plugins/</link>
		<comments>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-2-%e2%80%93-page-elements-appearing-in-front-of-pop-up-images-in-the-nextgen-gallery-lightbox-plugins/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 03:20:22 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Wordpress/system stuff]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[NextGen Gallery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[Wordpress errors]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=519</guid>
		<description><![CDATA[This one&#8217;s actually a bit impromptu as I only just figured it out and wanted to share it with the community in case anyone else comes across the same problem.
Since installing the new themes here and on my other blog, I found that all my image galleries that were put together using the NextGen Gallery [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-3-%e2%80%93-customising-the-wp_list_pages-navigation-menu-drop-downs-to-insert-elements-between-each-menu-heading-dynamically/' rel='bookmark' title='Permanent Link: Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically'>Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically</a></li>
<li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-1-warning-cannot-modify-header-information-headers-already-sent-by/' rel='bookmark' title='Permanent Link: Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;'>Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This one&#8217;s actually a bit impromptu as I only just figured it out and wanted to share it with the community in case anyone else comes across the same problem.</p>
<p>Since installing the new themes here and on <a href="http://www.retro-otaku">my other blog</a>, I found that all my image galleries that were put together using the NextGen Gallery plugin (which also uses the lightbox plugin) had all the elements from the navigation bar appearing above the pop-up image. <a href="http://wordpress.org/support/topic/372149">I posted up a question</a> on the Wordpress support forums to see if anyone could help, and didn&#8217;t get a solution (though someone else posted up that they had the same problem, so I felt happy that it wasn&#8217;t just me which was a relief!)&#8230; but because I&#8217;m prone to lightbulb moments, I thought of something that may be causing the error, and thanks to some poking around with Firebug I found a solution, and it&#8217;s all to do with the z-index properties in the CSS files loaded into both of my blogs.</p>
<p>First up, some code:</p>
<h4>Previous code:</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.gisoku-budo.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=519&amp;download=GisokuBudoWPFixesPt2-wrong.txt">GisokuBudoWPFixesPt2-wrong.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5198"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code" id="p519code8"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#nav-menu</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#nav-menu</span> ul <span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span> <span style="color: #933;">35px</span> <span style="color: #933;">10px</span> <span style="color: #933;">35px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">list-style-position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">outside</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">300</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100%</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100%</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18pt</span>/<span style="color: #933;">24pt</span> Tahoma<span style="color: #00AA00;">,</span>Arial<span style="color: #00AA00;">,</span><span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ffffff</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>This is the CSS that governs how my navigation bar behaves itself &#8211; it seems a little convoluted, but it&#8217;s setup like this (and uses the rules that follow) to get the nice jQuery-driven drop-downs that can cascade out to multiple levels (there&#8217;ll be more on some PHP tricks I&#8217;ve used to customise my nav bar in the concluding post on WP fixes I&#8217;ll be posting up later). The property that is causing all the grief is actually the z-index property, which is currently set to 300 as per the tute I used as a reference to put the menu together. If we click on one of the images and wand our cursor over the pop-up version via Firebug to get the properties of the containing divs though, we reveal another z-index property that&#8217;s clashing. The #stimuli_overlay div that acts as the parent div for the goodies that follow has a z-index of 90, as referenced via the lightbox.css that is installed as part of the default Lightbox plugin:</p>
<h4>lightbox.css</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.gisoku-budo.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=519&amp;download=GisokuBudoWPFixesPt2-ref.txt">GisokuBudoWPFixesPt2-ref.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5199"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p519code9"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#stimuli_overlay</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">90</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">500px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>The solution to this is now simple &#8211; either change the lightbox.css file or change your style.css attached to your theme. I chose the latter since I didn&#8217;t want to touch the plugin defaults, as it would cause issues later on if the plugin were ever upgraded.</p>
<h4>New code:</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.gisoku-budo.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=519&amp;download=GisokuBudoWPFixesPt2-fixed.txt">GisokuBudoWPFixesPt2-fixed.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p51910"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code" id="p519code10"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#nav-menu</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#nav-menu</span> ul <span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span> <span style="color: #933;">35px</span> <span style="color: #933;">10px</span> <span style="color: #933;">35px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">list-style-position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">outside</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">50</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* Causes bugs for NGG, has to be smaller than #stimuli_overlay z-index, which is 90 by default, so move value of #nav-menu to 50 instead of 300 */</span>
 <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100%</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100%</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18pt</span>/<span style="color: #933;">24pt</span> Tahoma<span style="color: #00AA00;">,</span>Arial<span style="color: #00AA00;">,</span><span style="color: #993333;">sans-serif</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ffffff</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>There, problem solved &#8211; 50 is still ample to ensure the dropdowns sit on top of other elements, and small enough to ensure it doesn&#8217;t interfere with the lightbox CSS.</p>
<p>And because I&#8217;m big on commenting in my code to avoid getting confused when maintaining it, I&#8217;ve also added that great big string of text to my CSS to remember why it&#8217;s changed from the standard 300 recommended by the tute I used as a reference.</p>
<p>In theory, you can make the z-index property anything you like, just as long as it doesn&#8217;t go above the z-index value of the divs that sit above your page when you call the lightbox plugin via NextGen Gallery.</p>
<p>I was originally planning on writing two Wordpress pieces, but I only worked this one out a couple of hours ago and thought I should share <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Next one will be the last, then I&#8217;ll get back to the usual program I promise!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2010%2F03%2Fwordpress-fixes-part-2-%25e2%2580%2593-page-elements-appearing-in-front-of-pop-up-images-in-the-nextgen-gallery-lightbox-plugins%2F&amp;linkname=Wordpress%20fixes%20part%202%20%E2%80%93%20Page%20elements%20appearing%20in%20front%20of%20pop-up%20images%20in%20the%20NextGen%20Gallery%20%2F%20lightbox%20plugins"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-3-%e2%80%93-customising-the-wp_list_pages-navigation-menu-drop-downs-to-insert-elements-between-each-menu-heading-dynamically/' rel='bookmark' title='Permanent Link: Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically'>Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically</a></li>
<li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-1-warning-cannot-modify-header-information-headers-already-sent-by/' rel='bookmark' title='Permanent Link: Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;'>Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-2-%e2%80%93-page-elements-appearing-in-front-of-pop-up-images-in-the-nextgen-gallery-lightbox-plugins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress fixes part 1 &#8211; Warning: Cannot modify header information &#8211; headers already sent by&#8230;</title>
		<link>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-1-warning-cannot-modify-header-information-headers-already-sent-by/</link>
		<comments>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-1-warning-cannot-modify-header-information-headers-already-sent-by/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 03:44:33 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Wordpress/system stuff]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[Wordpress errors]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=507</guid>
		<description><![CDATA[Just wanted to share this fix &#8211; I had this error come up when working on my other blog when I installed my latest theme and could not work out why it was happening. The error message mentioned the functions.php file and pluggable.php file in the error message.
From what I&#8217;ve read online, this error is [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-2-%e2%80%93-page-elements-appearing-in-front-of-pop-up-images-in-the-nextgen-gallery-lightbox-plugins/' rel='bookmark' title='Permanent Link: Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins'>Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins</a></li>
<li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-3-%e2%80%93-customising-the-wp_list_pages-navigation-menu-drop-downs-to-insert-elements-between-each-menu-heading-dynamically/' rel='bookmark' title='Permanent Link: Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically'>Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just wanted to share this fix &#8211; I had this error come up when working on my <a href="http://www.retro-otaku.com/">other blog</a> when I installed my latest theme and could not work out why it was happening. The error message mentioned the functions.php file and pluggable.php file in the error message.</p>
<p>From what I&#8217;ve read online, this error is caused by whitespace somewhere in the PHP files noted in the error message. As a precaution I went in and checked every php file in my theme and cleaned any inconsistencies, then checked pluggable.php and got rid of the blank space at the end of the file. Reloaded, still no luck.</p>
<p>I then took another look at my functions.php file, and something occurred to me &#8211; I added a php comment field at the top of the file before programming in some stuff in the file, and there was a blank line between the comment php tag and the functions &#8211; I removed the comment so it was purely the functions on the first line, and problem fixed!</p>
<h4>Previous code:</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.gisoku-budo.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=507&amp;download=GisokuBudoWPFixesPt1-wrong.txt">GisokuBudoWPFixesPt1-wrong.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p50713"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
</pre></td><td class="code" id="p507code13"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">/*  
Theme Name: RetroOtakuV2
Theme URI: http://www.retro-otaku.com/
Description: Custom theme for my blog.
Version: 2.0
Author: Sean Boden
Author URI: http://www.retro-otaku.com/
*/</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>  
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <a href="http://www.php.net/function_exists"><span style="color: #990000;">function_exists</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'register_sidebar'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>  
    register_sidebar<span style="color: #009900;">&#40;</span><a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span>  
        <span style="color: #0000ff;">'before_widget'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;div class=&quot;sidemenu-container&quot; id=&quot;%1$s&quot;&gt;&lt;div class=&quot;sidemenu-top&quot;&gt;&lt;/div&gt;&lt;div class=&quot;sidemenu-repeater&quot;&gt;&lt;div class=&quot;sidemenu-main&quot;&gt;&lt;div class=&quot;sidemenu-content&quot;&gt;'</span><span style="color: #339933;">,</span>  
        <span style="color: #0000ff;">'after_widget'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;sidemenu-base&quot;&gt;&lt;/div&gt;&lt;/div&gt;'</span><span style="color: #339933;">,</span>  
        <span style="color: #0000ff;">'before_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;h2&gt;'</span><span style="color: #339933;">,</span>  
        <span style="color: #0000ff;">'after_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/h2&gt;'</span><span style="color: #339933;">,</span>  
    <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<h4>New code:</h4>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.gisoku-budo.com/wp-content/plugins/wp-codebox/wp-codebox.php?p=507&amp;download=GisokuBudoWPFixesPt1-right.txt">GisokuBudoWPFixesPt1-right.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p50714"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code" id="p507code14"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>  
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <a href="http://www.php.net/function_exists"><span style="color: #990000;">function_exists</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'register_sidebar'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>  
    register_sidebar<span style="color: #009900;">&#40;</span><a href="http://www.php.net/array"><span style="color: #990000;">array</span></a><span style="color: #009900;">&#40;</span>  
        <span style="color: #0000ff;">'before_widget'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;div class=&quot;sidemenu-container&quot; id=&quot;%1$s&quot;&gt;&lt;div class=&quot;sidemenu-top&quot;&gt;&lt;/div&gt;&lt;div class=&quot;sidemenu-repeater&quot;&gt;&lt;div class=&quot;sidemenu-main&quot;&gt;&lt;div class=&quot;sidemenu-content&quot;&gt;'</span><span style="color: #339933;">,</span>  
        <span style="color: #0000ff;">'after_widget'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;sidemenu-base&quot;&gt;&lt;/div&gt;&lt;/div&gt;'</span><span style="color: #339933;">,</span>  
        <span style="color: #0000ff;">'before_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;h2&gt;'</span><span style="color: #339933;">,</span>  
        <span style="color: #0000ff;">'after_title'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/h2&gt;'</span><span style="color: #339933;">,</span>  
    <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Incedently, you can also see how I set up the sidenav boxes on <a href="http://www.retro-otaku.com/">my other blog</a> this way too in case you&#8217;re interested or want to criticise <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>While everyone might have different issues, hopefully this&#8217;ll help someone else who gets this message &#8211; check the files indicated in the error message, and if you&#8217;ve added a comment to the top of your file for example (like my functions.php file, where I put the theme details in as a php comment and then had a blank space/line underneath), chop it out, re-upload via FTP, and hopefully your issue will be resolved!</p>
<p>I have another Wordpress fix to post in the next couple of days on the blog detailing how I setup the drop-down system in my navigation bar in the page header to style the top nav separately from the drop-down boxes to dynamically insert the dividers to the right of each menu item. Stay tuned!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2010%2F03%2Fwordpress-fixes-part-1-warning-cannot-modify-header-information-headers-already-sent-by%2F&amp;linkname=Wordpress%20fixes%20part%201%20%26%238211%3B%20Warning%3A%20Cannot%20modify%20header%20information%20%26%238211%3B%20headers%20already%20sent%20by%26%238230%3B"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-2-%e2%80%93-page-elements-appearing-in-front-of-pop-up-images-in-the-nextgen-gallery-lightbox-plugins/' rel='bookmark' title='Permanent Link: Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins'>Wordpress fixes part 2 – Page elements appearing in front of pop-up images in the NextGen Gallery / lightbox plugins</a></li>
<li><a href='http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-3-%e2%80%93-customising-the-wp_list_pages-navigation-menu-drop-downs-to-insert-elements-between-each-menu-heading-dynamically/' rel='bookmark' title='Permanent Link: Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically'>Wordpress fixes part 3 – Customising the wp_list_pages navigation menu drop-downs to insert elements between each menu heading dynamically</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2010/03/wordpress-fixes-part-1-warning-cannot-modify-header-information-headers-already-sent-by/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Whew, time to start writing again!</title>
		<link>http://www.gisoku-budo.com/2010/03/whew-time-to-start-writing-again/</link>
		<comments>http://www.gisoku-budo.com/2010/03/whew-time-to-start-writing-again/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 03:19:46 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blogs/websites]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=505</guid>
		<description><![CDATA[Just wanted to share with everyone that the new site theme for Retro Otaku is finished and has been uploaded. There are still a few bugs to sort out (particularly with the image galleries), but it&#8217;s looking very nice. Please feel free to have a look!
The good news is that I can start getting back [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/02/archive-blog-1-2-player-1-start/' rel='bookmark' title='Permanent Link: Archive: Blog 1-2. Player 1 Start'>Archive: Blog 1-2. Player 1 Start</a></li>
<li><a href='http://www.gisoku-budo.com/2009/03/march-is-off-to-a-good-start/' rel='bookmark' title='Permanent Link: March is off to a good start'>March is off to a good start</a></li>
<li><a href='http://www.gisoku-budo.com/2009/08/giving-the-blog-a-facelift/' rel='bookmark' title='Permanent Link: Giving the blog a facelift'>Giving the blog a facelift</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just wanted to share with everyone that the new site theme for <a href="http://www.retro-otaku.com/">Retro Otaku</a> is finished and has been uploaded. There are still a few bugs to sort out (particularly with the image galleries), but it&#8217;s looking very nice. Please feel free to <a href="http://www.retro-otaku.com/">have a look</a>!</p>
<p>The good news is that I can start getting back into writing, rather than coding/designing <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Though the next two posts will be Wordpress related as I&#8217;d like to share some fixes/tips I&#8217;ve picked up from the new themes I&#8217;ve put together, so indulge me a little longer <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2010%2F03%2Fwhew-time-to-start-writing-again%2F&amp;linkname=Whew%2C%20time%20to%20start%20writing%20again%21"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/02/archive-blog-1-2-player-1-start/' rel='bookmark' title='Permanent Link: Archive: Blog 1-2. Player 1 Start'>Archive: Blog 1-2. Player 1 Start</a></li>
<li><a href='http://www.gisoku-budo.com/2009/03/march-is-off-to-a-good-start/' rel='bookmark' title='Permanent Link: March is off to a good start'>March is off to a good start</a></li>
<li><a href='http://www.gisoku-budo.com/2009/08/giving-the-blog-a-facelift/' rel='bookmark' title='Permanent Link: Giving the blog a facelift'>Giving the blog a facelift</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2010/03/whew-time-to-start-writing-again/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>w00t, new template is now live :)</title>
		<link>http://www.gisoku-budo.com/2010/02/w00t-new-template-is-now-live/</link>
		<comments>http://www.gisoku-budo.com/2010/02/w00t-new-template-is-now-live/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 08:01:23 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Wordpress/system stuff]]></category>
		<category><![CDATA[New template]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=502</guid>
		<description><![CDATA[Awesomeness, after a bit of tinkering this afternoon the new template is live   There are bound to be bugs and I haven&#8217;t had the time to bug test it in Internet Explorer 6 yet, but it&#8217;s working nicely in FF3 and IE8.
I tells ya, IE6 is the bane of the internet. Such old, [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/02/oops-its-broken-in-ie6-p/' rel='bookmark' title='Permanent Link: Oops, its broken in IE6 :P'>Oops, its broken in IE6 :P</a></li>
<li><a href='http://www.gisoku-budo.com/2009/02/ie6-problems-now-fixed/' rel='bookmark' title='Permanent Link: IE6 problems now fixed'>IE6 problems now fixed</a></li>
<li><a href='http://www.gisoku-budo.com/2010/01/apologies-for-lack-of-updates-bear-with-me/' rel='bookmark' title='Permanent Link: Apologies for lack of updates &#8211; bear with me!'>Apologies for lack of updates &#8211; bear with me!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Awesomeness, after a bit of tinkering this afternoon the new template is live <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  There are bound to be bugs and I haven&#8217;t had the time to bug test it in Internet Explorer 6 yet, but it&#8217;s working nicely in FF3 and IE8.</p>
<p>I tells ya, IE6 is the bane of the internet. Such old, filthy code. I wish MS made the update to a newer browser mandatory with the onset of WinXP SP2. Would have saved the world a much better, gradually more standards-compliant place online <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anywho, if any bugs crop up, let me know. And again, apologies in advance to the IE6 users &#8211; once I&#8217;ve got my new template finished for <a href="http://www.retro-otaku.com/">Retro Otaku</a>, I&#8217;ll go back and give you a nice little stylesheet to suit your archaic browser <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2010%2F02%2Fw00t-new-template-is-now-live%2F&amp;linkname=w00t%2C%20new%20template%20is%20now%20live%20%3A%29"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/02/oops-its-broken-in-ie6-p/' rel='bookmark' title='Permanent Link: Oops, its broken in IE6 :P'>Oops, its broken in IE6 :P</a></li>
<li><a href='http://www.gisoku-budo.com/2009/02/ie6-problems-now-fixed/' rel='bookmark' title='Permanent Link: IE6 problems now fixed'>IE6 problems now fixed</a></li>
<li><a href='http://www.gisoku-budo.com/2010/01/apologies-for-lack-of-updates-bear-with-me/' rel='bookmark' title='Permanent Link: Apologies for lack of updates &#8211; bear with me!'>Apologies for lack of updates &#8211; bear with me!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2010/02/w00t-new-template-is-now-live/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Almost there!!</title>
		<link>http://www.gisoku-budo.com/2010/02/almost-there/</link>
		<comments>http://www.gisoku-budo.com/2010/02/almost-there/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 13:17:03 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Wordpress/system stuff]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=498</guid>
		<description><![CDATA[Sorry again for lack of updates!! Just wanted to jump in and let people know that I&#8217;ve almost finished coding up the new template and it&#8217;s looking great! Will try and install it over the weekend, so if the blog mysteriously disappears for a few hours, don&#8217;t sweat &#8211; it&#8217;ll be back and look shinier [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/02/w00t-new-template-is-now-live/' rel='bookmark' title='Permanent Link: w00t, new template is now live :)'>w00t, new template is now live :)</a></li>
<li><a href='http://www.gisoku-budo.com/2009/07/yes-im-still-here/' rel='bookmark' title='Permanent Link: &#8230; yes, I&#8217;m still here :)'>&#8230; yes, I&#8217;m still here :)</a></li>
<li><a href='http://www.gisoku-budo.com/2010/01/apologies-for-lack-of-updates-bear-with-me/' rel='bookmark' title='Permanent Link: Apologies for lack of updates &#8211; bear with me!'>Apologies for lack of updates &#8211; bear with me!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Sorry again for lack of updates!! Just wanted to jump in and let people know that I&#8217;ve almost finished coding up the new template and it&#8217;s looking great! Will try and install it over the weekend, so if the blog mysteriously disappears for a few hours, don&#8217;t sweat &#8211; it&#8217;ll be back and look shinier before you know it <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Things will still be light for the rest of the month as I intend to code up a fresh template for my <a href="http://www.retro-otaku.com/">gaming blog</a>, and once they&#8217;re both done, I&#8217;ll be back to blogging as per the usual!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2010%2F02%2Falmost-there%2F&amp;linkname=Almost%20there%21%21"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/02/w00t-new-template-is-now-live/' rel='bookmark' title='Permanent Link: w00t, new template is now live :)'>w00t, new template is now live :)</a></li>
<li><a href='http://www.gisoku-budo.com/2009/07/yes-im-still-here/' rel='bookmark' title='Permanent Link: &#8230; yes, I&#8217;m still here :)'>&#8230; yes, I&#8217;m still here :)</a></li>
<li><a href='http://www.gisoku-budo.com/2010/01/apologies-for-lack-of-updates-bear-with-me/' rel='bookmark' title='Permanent Link: Apologies for lack of updates &#8211; bear with me!'>Apologies for lack of updates &#8211; bear with me!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2010/02/almost-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apologies for lack of updates &#8211; bear with me!</title>
		<link>http://www.gisoku-budo.com/2010/01/apologies-for-lack-of-updates-bear-with-me/</link>
		<comments>http://www.gisoku-budo.com/2010/01/apologies-for-lack-of-updates-bear-with-me/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 03:34:17 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Wordpress/system stuff]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=495</guid>
		<description><![CDATA[Just wanted to post a quick heads-up &#8211; I&#8217;m currently working on a new site template for here and my other blog, so once they&#8217;re both finished up, it&#8217;ll be back to business as usual  
Thanks in advance!!!!  


Related posts:Almost there!!
w00t, new template is now live :)
&#8230; I think I&#8217;m done :P



Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/02/almost-there/' rel='bookmark' title='Permanent Link: Almost there!!'>Almost there!!</a></li>
<li><a href='http://www.gisoku-budo.com/2010/02/w00t-new-template-is-now-live/' rel='bookmark' title='Permanent Link: w00t, new template is now live :)'>w00t, new template is now live :)</a></li>
<li><a href='http://www.gisoku-budo.com/2009/02/i-think-im-done-p/' rel='bookmark' title='Permanent Link: &#8230; I think I&#8217;m done :P'>&#8230; I think I&#8217;m done :P</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just wanted to post a quick heads-up &#8211; I&#8217;m currently working on a new site template for here and <a href="http://www.retro-otaku.com/">my other blog</a>, so once they&#8217;re both finished up, it&#8217;ll be back to business as usual <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Thanks in advance!!!! <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2010%2F01%2Fapologies-for-lack-of-updates-bear-with-me%2F&amp;linkname=Apologies%20for%20lack%20of%20updates%20%26%238211%3B%20bear%20with%20me%21"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2010/02/almost-there/' rel='bookmark' title='Permanent Link: Almost there!!'>Almost there!!</a></li>
<li><a href='http://www.gisoku-budo.com/2010/02/w00t-new-template-is-now-live/' rel='bookmark' title='Permanent Link: w00t, new template is now live :)'>w00t, new template is now live :)</a></li>
<li><a href='http://www.gisoku-budo.com/2009/02/i-think-im-done-p/' rel='bookmark' title='Permanent Link: &#8230; I think I&#8217;m done :P'>&#8230; I think I&#8217;m done :P</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2010/01/apologies-for-lack-of-updates-bear-with-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy 2010!</title>
		<link>http://www.gisoku-budo.com/2010/01/happy-2010/</link>
		<comments>http://www.gisoku-budo.com/2010/01/happy-2010/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 02:58:26 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blogs/websites]]></category>
		<category><![CDATA[Milestones]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=493</guid>
		<description><![CDATA[Just wanted to wish everyone well for the coming year&#8230; and apologise for the dearth of updates to the site over the last couple of weeks &#8211; I was enjoying a few weeks off catching up with family, spending time with Wifey, celebrating x-mas and the new year, and taking a break from work/blogging/training/etc.
It&#8217;s been [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/10/happy-days-arnold-teaches-richie-judo/' rel='bookmark' title='Permanent Link: Happy Days&#8217; Arnold teaches Richie judo'>Happy Days&#8217; Arnold teaches Richie judo</a></li>
<li><a href='http://www.gisoku-budo.com/2009/05/stupid-fun-happy-photo-time/' rel='bookmark' title='Permanent Link: Stupid fun happy photo time'>Stupid fun happy photo time</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just wanted to wish everyone well for the coming year&#8230; and apologise for the dearth of updates to the site over the last couple of weeks &#8211; I was enjoying a few weeks off catching up with family, spending time with Wifey, celebrating x-mas and the new year, and taking a break from work/blogging/training/etc.</p>
<p>It&#8217;s been nearly 12 months since I first started up this site, and I also want to say a huge thank you to my readers, as well as the blogging and martial arts communities who continue to support, give advice and lend their encouragement to my little corner of the blogosphere. I think Wifey deserves a mention as well, since she&#8217;s the one who has to exercise patience owing to the time/energies I spend maintaining the site <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m looking forward to a few changes in the next 12 months &#8211; there will be more image galleries as these seem to be popular with visitors, possibly a couple of videos and a new visual overhaul of the site to make it look a bit more interesting <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here&#8217;s to another exciting year!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2010%2F01%2Fhappy-2010%2F&amp;linkname=Happy%202010%21"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/10/happy-days-arnold-teaches-richie-judo/' rel='bookmark' title='Permanent Link: Happy Days&#8217; Arnold teaches Richie judo'>Happy Days&#8217; Arnold teaches Richie judo</a></li>
<li><a href='http://www.gisoku-budo.com/2009/05/stupid-fun-happy-photo-time/' rel='bookmark' title='Permanent Link: Stupid fun happy photo time'>Stupid fun happy photo time</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2010/01/happy-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hakutsuru, the white crane &#8211; classical karate style with techniques that only use one leg?</title>
		<link>http://www.gisoku-budo.com/2009/12/hakutsuru-the-white-crane-classical-karate-style-with-techniques-that-only-use-one-leg/</link>
		<comments>http://www.gisoku-budo.com/2009/12/hakutsuru-the-white-crane-classical-karate-style-with-techniques-that-only-use-one-leg/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 03:24:14 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Karate]]></category>
		<category><![CDATA[amputee]]></category>
		<category><![CDATA[Classical karate]]></category>
		<category><![CDATA[Hakutsuru]]></category>
		<category><![CDATA[Okinawa Hakutsuru Kenpo White Crane Association]]></category>
		<category><![CDATA[Okinawan White Crane Kenpo]]></category>
		<category><![CDATA[stump]]></category>
		<category><![CDATA[White Crane]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=491</guid>
		<description><![CDATA[Matt over at Ikigai Way dropped off an awesome comment on my recent whinge about mangling my stump. He provided some information and links to a classical style of karate &#8211; Hakutsuru or the White Crane &#8211; that his instructor has trained in. Apart from the fact that it&#8217;s an interesting style of karate to [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/02/archive-taekwondo-1991-style/' rel='bookmark' title='Permanent Link: Archive: Taekwondo, 1991-style'>Archive: Taekwondo, 1991-style</a></li>
<li><a href='http://www.gisoku-budo.com/2009/02/archive-learning-new-techniques/' rel='bookmark' title='Permanent Link: Archive: Learning new techniques'>Archive: Learning new techniques</a></li>
<li><a href='http://www.gisoku-budo.com/2009/03/learning-to-walk-again-through-karate/' rel='bookmark' title='Permanent Link: Learning to walk again through karate'>Learning to walk again through karate</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Matt over at <a href="http://www.ikigaiway.com/">Ikigai Way</a> dropped off an awesome comment on my <a href="/2009/12/taking-a-forced-break-over-x-mas/">recent whinge</a> about mangling my stump. He provided some information and links to a classical style of karate &#8211; Hakutsuru or the White Crane &#8211; that his instructor has trained in. Apart from the fact that it&#8217;s an interesting style of karate to study due to the heavy Chinese influence in its forms vs the comparatively rigid styling of modern styles like Shotokan (note I mean &#8220;modern&#8221; as used in the &#8220;post-modern&#8221;/Japanese post-modernism sense, and not in the misuse of the word in place of the word &#8220;contemporary&#8221;), it also features techniques that only utilise one leg!</p>
<p>For those unaware of what Hakutsuru looks like performed as a kata, Matt posted a couple of vids that I&#8217;m going to pinch and post up here as well:</p>
<p>First up is Seikichi Odo, who moves around with amazing skill despite his age: <a href="http://www.youtube.com/watch?v=iD78dP428ec">http://www.youtube.com/watch?v=iD78dP428ec</a> (I can&#8217;t embed that one by request of the author, but please check it out, some amazing stuff in there).</p>
<p>The second one is of Matayoshi Shinpo:</p>
<div align="center"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/encHYcCQgxc&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/encHYcCQgxc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></div>
<p>Being the super champ he is, Matt even fired across a link to the <a href="http://www.worldbudokan.com/HKA/WhiteCrane.htm">Okinawa Hakutsuru Kenpo White Crane Association&#8217;s website</a>, and in particular the articles written on the topic <i>China and the Origins of Okinawan White Crane Kenpo</i> (<a href="http://www.worldbudokan.com/Articles/ChinaOriginsWhiteCrane1.htm">Part 1</a> and <a href="http://www.worldbudokan.com/Articles/ChinaOriginsWhiteCrane2.htm">Part 2</a>). I haven&#8217;t had a chance to do more than quickly skim through their site, but by plonking the links up here, I&#8217;m hoping it&#8217;ll remind to go through it in much more detail when I get a chance.</p>
<p>Since I&#8217;m curious about what I might be able to learn and apply from their style to me as an amputee, I&#8217;m going to drop them an e-mail to see if they can recommend any particular part of their literature or offer any advice on this one. I&#8217;ll post back with an update on how I go!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2009%2F12%2Fhakutsuru-the-white-crane-classical-karate-style-with-techniques-that-only-use-one-leg%2F&amp;linkname=Hakutsuru%2C%20the%20white%20crane%20%26%238211%3B%20classical%20karate%20style%20with%20techniques%20that%20only%20use%20one%20leg%3F"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/02/archive-taekwondo-1991-style/' rel='bookmark' title='Permanent Link: Archive: Taekwondo, 1991-style'>Archive: Taekwondo, 1991-style</a></li>
<li><a href='http://www.gisoku-budo.com/2009/02/archive-learning-new-techniques/' rel='bookmark' title='Permanent Link: Archive: Learning new techniques'>Archive: Learning new techniques</a></li>
<li><a href='http://www.gisoku-budo.com/2009/03/learning-to-walk-again-through-karate/' rel='bookmark' title='Permanent Link: Learning to walk again through karate'>Learning to walk again through karate</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2009/12/hakutsuru-the-white-crane-classical-karate-style-with-techniques-that-only-use-one-leg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On self-defense with a walking stick</title>
		<link>http://www.gisoku-budo.com/2009/12/on-self-defense-with-a-walking-stick/</link>
		<comments>http://www.gisoku-budo.com/2009/12/on-self-defense-with-a-walking-stick/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 02:25:57 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Kobudo]]></category>
		<category><![CDATA[bo]]></category>
		<category><![CDATA[eskrima]]></category>
		<category><![CDATA[hanbo]]></category>
		<category><![CDATA[Injuries]]></category>
		<category><![CDATA[jo]]></category>
		<category><![CDATA[kali]]></category>
		<category><![CDATA[prosthesis]]></category>
		<category><![CDATA[self defense]]></category>
		<category><![CDATA[stick fighting]]></category>
		<category><![CDATA[stump]]></category>
		<category><![CDATA[walking stick]]></category>
		<category><![CDATA[yawara]]></category>

		<guid isPermaLink="false">http://www.gisoku-budo.com/?p=489</guid>
		<description><![CDATA[Patrick over at Mokuren Dojo fired across an e-mail to me the other day about a post he wrote on tantojutso (a walking-cane adjunct to SMR jojutsu). Given the state of my stump at the moment (read more here), I&#8217;m currently using my walking stick where practical to get around the place, which meant Patrick&#8217;s [...]


Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/08/training-round-up/' rel='bookmark' title='Permanent Link: Training round-up'>Training round-up</a></li>
<li><a href='http://www.gisoku-budo.com/2009/12/taking-a-forced-break-over-x-mas/' rel='bookmark' title='Permanent Link: Taking a (forced) break over x-mas'>Taking a (forced) break over x-mas</a></li>
<li><a href='http://www.gisoku-budo.com/2009/11/mangling-my-leg-again/' rel='bookmark' title='Permanent Link: Mangling my leg (again :P)'>Mangling my leg (again :P)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Patrick over at <a href="http://www.mokurendojo.com/">Mokuren Dojo</a> fired across an e-mail to me the other day about <a href="http://www.mokurendojo.com/2009/11/tanjojutsu-for-real.html">a post he wrote on tantojutso (a walking-cane adjunct to SMR jojutsu)</a>. Given the state of my stump at the moment (<a href="/2009/12/taking-a-forced-break-over-x-mas/">read more here</a>), I&#8217;m currently using my walking stick where practical to get around the place, which meant Patrick&#8217;s post was eerily relevant to me <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In 2008 I experimented with learning some stick fighting principles as an adjunct to my usual karate training. While the style wasn&#8217;t a strict or traditional one (despite some traditional aspects from the various systems present thrown into the mix), it was focused on some basic stick fighting principles, incorporating eskrima/kali elements with the rattan, bojutsu, defensive techniques with the hanbo and jo, a little bit of yawara training and a walking stick style that had its roots within a French system. The aim of the training was to give the practitioner the tools and principles to defend oneself by using any varietal of stick or pole as a weapon. I feel that, despite only spending a small period of time training in it, that it succeeded in teaching me some basic tenets for defending myself with varying weapons. While the eskrima stuff was probably the most fun (and made cool noises when training <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ), the most relevant was arguably the walking stick techniques I learned.</p>
<p>The basic training showed how to use a hooked walking stick in a variety of ways. It demonstrated basic blocking and striking using various aspects of the walking stick, even down to utilising the different ends of the stick to achieve different ends. For example, if performing a thrusting strike, using the bottom of the stick concentrates the kinetic energy to a smaller surface of impact, giving rise to a variety of fast, poking strikes; however, depending on the walking stick, I found that this technique put excess stress on the shaft of the walking stick and required greater accuracy to achieve a worthwhile result. Going the other way, you can thrust using the hooked end of the stick, which is useful for creating more of a clubbing motion even when thrust. I found this to be quite effective given I found it quite intuitive to do a re-enforced two-handed thrusting strike with this technique from a utilitarian perspective, since I&#8217;ll normally have my hand on the hook and can easily use my other hand to grab the other end of the staff and use both arms for the strike. While the greater surface area means you get a different kind of impact than with the butt-end of the stick, it also requires less accuracy, which means it potentially has a greater degree of utility in a self defense scenario where the adrenalin or panic may hinder your usual level of accuracy.</p>
<p>What I found quite interesting is that it wasn&#8217;t too difficult to translate some of the broad striking motions and diagonal patterns of attack from eskrima to the walking stick. The difference of course is that a walking stick is generally longer than your average rattan&#8230; but that being said, if you&#8217;re familiar with short staff techniques (like jo or hanbo) and you have a longer walking stick, then you can also truncate your walking stick skillset with some of these other techniques (some of my favourite techniques from jo and hanbo were the trapping and joint-manipulation techniques, which I think would prove useful with a walking stick).</p>
<p>I guess it shows the level of inter-connectivity with different styles and the relationship between them. I have a feeling my Sensei would be pleased to know I joined the dots in my head and found the commonality in the tools he gave us <img src='http://www.gisoku-budo.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It also demonstrates a strong focus on utility (something that&#8217;s a core focus on the posts at <a href="http://martial.jessecrouch.com/">The Martial Explorer</a>) and that, as a martial artist, you should be able to not only demonstrate the finer aspects of the forms you learn in class, but be able to take away those core principles and utilise them as essential tools in any instances of self defense, or if we&#8217;re getting a bit more philosophical, utilise those precepts as an approach to everyday life.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.gisoku-budo.com%2F2009%2F12%2Fon-self-defense-with-a-walking-stick%2F&amp;linkname=On%20self-defense%20with%20a%20walking%20stick"><img src="http://www.gisoku-budo.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>

<p>Related posts:<ol><li><a href='http://www.gisoku-budo.com/2009/08/training-round-up/' rel='bookmark' title='Permanent Link: Training round-up'>Training round-up</a></li>
<li><a href='http://www.gisoku-budo.com/2009/12/taking-a-forced-break-over-x-mas/' rel='bookmark' title='Permanent Link: Taking a (forced) break over x-mas'>Taking a (forced) break over x-mas</a></li>
<li><a href='http://www.gisoku-budo.com/2009/11/mangling-my-leg-again/' rel='bookmark' title='Permanent Link: Mangling my leg (again :P)'>Mangling my leg (again :P)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisoku-budo.com/2009/12/on-self-defense-with-a-walking-stick/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
