<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Voidzone Media</title>
	
	<link>http://voidzonemedia.com</link>
	<description />
	<lastBuildDate>Thu, 05 Jan 2012 05:48:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/voidzonemedia" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="voidzonemedia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">voidzonemedia</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>WP Vertical Nav in Sidebar with Thesis</title>
		<link>http://voidzonemedia.com/solutions/wp-vertical-nav-in-sidebar-with-thesis/</link>
		<comments>http://voidzonemedia.com/solutions/wp-vertical-nav-in-sidebar-with-thesis/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 18:30:34 +0000</pubDate>
		<dc:creator>Tim Milligan</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[custom menu]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[vertical nav]]></category>
		<category><![CDATA[wp menu]]></category>

		<guid isPermaLink="false">http://voidzonemedia.com/?p=205</guid>
		<description><![CDATA[There&#8217;s been a couple people asking how to get a wp vertical nav in their sidebar.  This post covers how to get over the technical css issues, the prettyfication you can do on your own after the fact. Step 1 &#8211; Setup your wp-nav Step 2 &#8211; Add the nav to your sidebar using the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>There&#8217;s been a couple people asking how to get a wp vertical nav in their sidebar.  This post covers how to get over the technical css issues, the prettyfication you can do on your own after the fact.</p>
<p>Step 1 &#8211; Setup your wp-nav</p>
<p>Step 2 &#8211; Add the nav to your sidebar using the Custom Menu widget</p>
<p>Step 2 &#8211; Style it so it works, code below.</p>
<p><span id="more-205"></span><br />
Adjust the id, highlighted in red to match the id of your menu</p>
<pre>&lt;ul id="<span style="color: #ff0000;">menu-vertical-menu</span>" class="menu"&gt;</pre>
<p>The following code fixes the alignment and width issues.</p>
<pre>.custom <span style="color: #ff0000;">#menu-vertical-menu</span> li {
	float: none;
	position: static;
	margin-bottom:0;
}</pre>
<p>This portion of code is for the sub-nav items, makes it into an accordion style menu, you can see how it works when you hover over About:</p>
<pre>.custom <span style="color: #ff0000;">#menu-vertical-menu</span> li ul {
	display: none;
	margin: 0;
	position: static;
}
.custom <span style="color: #ff0000;">#menu-vertical-menu</span> li:hover ul, .custom <span style="color: #ff0000;">#menu-vertical-menu</span> a:hover ul, .custom <span style="color: #ff0000;">#menu-vertical-menu</span> *:hover ul *:hover ul, .custom <span style="color: #ff0000;">#menu-vertical-menu</span> *:hover ul *:hover ul *:hover ul {
	display: block;
}</pre>
<p>The Vertical Menu Test on this site is using the above code.</p>
<p>Originally posted in: <a href="http://diythemes.com/forums/showthread.php?60705-Why-does-active-pseudo-class-not-work-in-Thesis-sidebar&amp;p=270612#post270612" target="_blank">http://diythemes.com/forums/showthread.php?60705-Why-does-active-pseudo-class-not-work-in-Thesis-sidebar&amp;p=270612#post270612</a></p>
]]></content:encoded>
			<wfw:commentRss>http://voidzonemedia.com/solutions/wp-vertical-nav-in-sidebar-with-thesis/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thesis Full-Width Nav</title>
		<link>http://voidzonemedia.com/solutions/thesis-full-width-nav/</link>
		<comments>http://voidzonemedia.com/solutions/thesis-full-width-nav/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 14:56:47 +0000</pubDate>
		<dc:creator>Tim Milligan</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[full width nav]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://voidzonemedia.com/?p=199</guid>
		<description><![CDATA[I&#8217;m mainly posting this so I have somewhere to reference people rather than copying and pasting the coder every time. Originally developed by Kristarella The following adds a full-width nav below the header area: function full_width_nav() { ?&#62; &#60;div id="nav_area" class="full_width"&#62;     &#60;div class="page"&#62;         &#60;?php thesis_nav_menu(); ?&#62;     &#60;/div&#62; &#60;/div&#62; &#60;? } remove_action('thesis_hook_before_header', [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><em>I&#8217;m mainly posting this so I have somewhere to reference people rather than copying and pasting the coder every time. Originally developed by <a href="http://www.kristarella.com/" target="_blank">Kristarella</a><br />
</em></p>
<p>The following adds a full-width nav below the header area:<span id="more-199"></span></p>
<pre>function full_width_nav() { ?&gt;
&lt;div id="nav_area" class="full_width"&gt;
    &lt;div class="page"&gt;
        &lt;?php thesis_nav_menu(); ?&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;?
}
remove_action('thesis_hook_before_header', 'thesis_nav_menu'); // Remove top nav menu
add_action('thesis_hook_before_content_area', 'full_width_nav'); // Add full width nav below header</pre>
<p>If you want the full-width nav to be above the header use the following add_action instead:</p>
<pre>add_action('thesis_hook_before_html', 'full_width_nav'); // Add full width nav above header</pre>
]]></content:encoded>
			<wfw:commentRss>http://voidzonemedia.com/solutions/thesis-full-width-nav/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add custom author class to body</title>
		<link>http://voidzonemedia.com/solutions/add-custom-author-class-to-body/</link>
		<comments>http://voidzonemedia.com/solutions/add-custom-author-class-to-body/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 02:13:27 +0000</pubDate>
		<dc:creator>Tim Milligan</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[custom author class]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://voidzonemedia.com/?p=184</guid>
		<description><![CDATA[The following code adds a custom body class to all posts and author pages in the form of author-# where # is the ID of the author. function post_author_class($classes) { global $post; $post_author = $post-&#62;post_author; if (is_author() &#124;&#124; is_single()) { $classes[] .= 'author-'. get_the_author_meta('ID', $post_author); } return $classes; } add_filter('thesis_body_classes', 'post_author_class'); Originally for http://diythemes.com/forums/showthread.php?60592-Trying-to-assign-Custom-header-images-for-Author-and-Posts-by-Author]]></description>
			<content:encoded><![CDATA[<p></p><p>The following code adds a custom body class to all posts and author pages in the form of author-# where # is the ID of the author.<span id="more-184"></span></p>
<pre>function post_author_class($classes) {
    global $post;
    $post_author = $post-&gt;post_author;
    if (is_author() || is_single()) {
        $classes[] .= 'author-'. get_the_author_meta('ID', $post_author);
    }
    return $classes;
}
add_filter('thesis_body_classes', 'post_author_class');</pre>
<p>Originally for <a href="http://diythemes.com/forums/showthread.php?60592-Trying-to-assign-Custom-header-images-for-Author-and-Posts-by-Author">http://diythemes.com/forums/showthread.php?60592-Trying-to-assign-Custom-header-images-for-Author-and-Posts-by-Author</a></p>
]]></content:encoded>
			<wfw:commentRss>http://voidzonemedia.com/solutions/add-custom-author-class-to-body/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE Z-Index Solution for Thesis multi-line nav with submenus</title>
		<link>http://voidzonemedia.com/solutions/z-index-solution-thesis-multi-line-nav-with-submenus/</link>
		<comments>http://voidzonemedia.com/solutions/z-index-solution-thesis-multi-line-nav-with-submenus/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 20:48:52 +0000</pubDate>
		<dc:creator>Tim Milligan</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[multi-line nav]]></category>
		<category><![CDATA[nav]]></category>
		<category><![CDATA[subnav]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wp menu]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://voidzonemedia.com/?p=161</guid>
		<description><![CDATA[So lots of people are having issues with Thesis in IE7 and IE8 where subnav items appear beneath the other rows of the nav if their nav spans multiple rows.  Well I finally came up with a solution. Basically you need to turn your menu into a sort of staircase where the top row has [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So lots of people are having issues with Thesis in IE7 and IE8 where subnav items appear beneath the other rows of the nav if their nav spans multiple rows.  Well I finally came up with a solution.<span id="more-161"></span></p>
<p>Basically you need to turn your menu into a sort of staircase where the top row has the highest z-index and the bottom row has the lowest.</p>
<p>This particular site&#8217;s nav was 4 rows deep.</p>
<p>I originally came up with the following code:</p>
<pre>.custom .menu li.tab-1, .custom .menu li.tab-2, .custom .menu li.tab-3, .custom .menu li.tab-4, .custom .menu li.tab-5, .custom .menu li.tab-6 { z-index:4; }
.custom .menu li.tab-7, .custom .menu li.tab-8, .custom .menu li.tab-9, .custom .menu li.tab-10, .custom .menu li.tab-11 { z-index:3; }
.custom .menu li.tab-12, .custom .menu li.tab-13, .custom .menu li.tab-14, .custom .menu li.tab-15, .custom .menu li.tab-16 { z-index:2; }
.custom .menu li.tab-17, .custom .menu li.tab-18, .custom .menu li.tab-19, .custom .menu li.tab-20 { z-index:1; }</pre>
<p>But I wasn&#8217;t happy with it because it requires changing a lot of code if you remove 1 menu item.</p>
<p>So I thought how can I simplify it and came up with this solution:</p>
<pre>.custom .menu li:nth-of-type(n) { z-index:4; }
.custom .menu li:nth-of-type(n+7) { z-index:3; }
.custom .menu li:nth-of-type(n+12) { z-index:2; }
.custom .menu li:nth-of-type(n+17) { z-index:1; }</pre>
<p>With the n+[number] the [number] is the position of the first menu element on the new row.<br />
Fortunately Thesis gives each menu item a class called tab-[number] so you can easily figure out which element to use without counting manually.</p>
<p>If you want to see where I originally posted the solution you can find it on the diythemes forums: <a href="http://diythemes.com/forums/showthread.php?58289-z-index-problem-in-IE-for-top-nav&amp;p=259547#post259547">http://diythemes.com/forums/showthread.php?58289-z-index-problem-in-IE-for-top-nav&amp;p=259547#post259547</a></p>
]]></content:encoded>
			<wfw:commentRss>http://voidzonemedia.com/solutions/z-index-solution-thesis-multi-line-nav-with-submenus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caption Test</title>
		<link>http://voidzonemedia.com/test/caption-test/</link>
		<comments>http://voidzonemedia.com/test/caption-test/#comments</comments>
		<pubDate>Tue, 31 May 2011 01:41:03 +0000</pubDate>
		<dc:creator>Tim Milligan</dc:creator>
				<category><![CDATA[Test]]></category>
		<category><![CDATA[caption]]></category>

		<guid isPermaLink="false">http://voidzonemedia.com/?p=108</guid>
		<description><![CDATA[Caption Test 1234567890 This is where we put the words and they are flowing swimmingly etc. Image Aligned Right]]></description>
			<content:encoded><![CDATA[<p></p><div id="attachment_97" class="wp-caption alignright" style="width: 300px">
	<a href="http://voidzonemedia.com/wp-content/uploads/2011/05/taqohiko.jpg"><img class="size-medium wp-image-97 " title="taqohiko" src="http://voidzonemedia.com/wp-content/uploads/2011/05/taqohiko-300x256.jpg" alt="" width="300" height="256" /></a>
	<p class="wp-caption-text">Caption Test</p>
</div>
<p>Caption Test 1234567890</p>
<p>This is where we put the words and they are flowing swimmingly etc.</p>
<p>Image Aligned Right</p>
]]></content:encoded>
			<wfw:commentRss>http://voidzonemedia.com/test/caption-test/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Querystring Test</title>
		<link>http://voidzonemedia.com/test/querystring-test/</link>
		<comments>http://voidzonemedia.com/test/querystring-test/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 18:02:08 +0000</pubDate>
		<dc:creator>Tim Milligan</dc:creator>
				<category><![CDATA[Test]]></category>

		<guid isPermaLink="false">http://voidzonemedia.com/?p=79</guid>
		<description />
			<content:encoded />
			<wfw:commentRss>http://voidzonemedia.com/test/querystring-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teaser Rollover Test</title>
		<link>http://voidzonemedia.com/test/teaser-rollover-test/</link>
		<comments>http://voidzonemedia.com/test/teaser-rollover-test/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:09:00 +0000</pubDate>
		<dc:creator>Tim Milligan</dc:creator>
				<category><![CDATA[Test]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[rollover]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[teaser]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[thumbnail]]></category>

		<guid isPermaLink="false">http://voidzonemedia.com/?p=42</guid>
		<description><![CDATA[Teaser rollover test (working! ) http://voidzonemedia.com/category/test/ Solution &#8211; DIY Themes Forums]]></description>
			<content:encoded><![CDATA[<p></p><p>Teaser rollover test</p>
<p>(working! <img src='http://voidzonemedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p><span id="more-42"></span></p>
<p><a href="http://voidzonemedia.com/category/test/">http://voidzonemedia.com/category/test/</a><br />
<a href="http://diythemes.com/forums/showthread.php?29331-Very-Nice-Fading-Header-or-ROLLOVER-header-image&amp;p=134296#post134296">Solution &#8211; DIY Themes Forums</a></p>
]]></content:encoded>
			<wfw:commentRss>http://voidzonemedia.com/test/teaser-rollover-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

