<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Gudstoff</title>
	<atom:link href="http://www.gudstoff.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gudstoff.com</link>
	<description>gudstoff - your source to good stuff</description>
	<pubDate>Thu, 20 Nov 2008 20:36:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on Dynamic menu highlighting with WordPress by Administrator</title>
		<link>http://www.gudstoff.com/2006/03/dynamic_menu/#comment-63</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Thu, 19 Oct 2006 04:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=13#comment-63</guid>
		<description>&lt;p&gt;the visual effect, might be different depending on the theme you use, some themes might not use default css styles. the blix theme uses the following code to highlight the selected menu item:&lt;/p&gt; &lt;p&gt;&lt;code&gt;&#60;ul&#62;&lt;br /&gt; &#160;&#160;&#160; &#60;li&#62;&#60;?php if (is_home()) echo &#34; class=\&#34;selected\&#34;&#34;; ?&#62;&#62;&#60;a xhref=&#34;&#60;?php bloginfo('url'); ?&#62;&#34;&#62;Home&#60;/a&#62;&#60;/li&#62;&lt;br /&gt; &#160;&#160;&#160; &#60;?php	$pages = BX_get_pages();&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; if ($pages) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; foreach ($pages as $page) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $page_id = $page-&#62;ID;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $page_title = $page-&#62;post_title;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $page_name = $page-&#62;post_name;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; if ($page_name == &#34;archives&#34;) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (is_page($page_id) &#124;&#124; is_archive() &#124;&#124; is_search() &#124;&#124; is_single())?$selected = ' class=&#34;selected&#34;':$selected='';&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; echo &#34;&#60;li&#34;.$selected.&#34;&#62;&#60;a xhref=\&#34;&#34;.get_page_link($page_id).&#34;\&#34;&#62;Archives&#60;/a&#62;&#60;/li&#62;\n&#34;;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; elseif($page_name == &#34;about&#34;) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (is_page($page_id))?$selected = ' class=&#34;selected&#34;':$selected='';&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; echo &#34;&#60;li&#34;.$selected.&#34;&#62;&#60;a xhref=\&#34;&#34;.get_page_link($page_id).&#34;\&#34;&#62;About&#60;/a&#62;&#60;/li&#62;\n&#34;;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; elseif ($page_name == &#34;contact&#34;) {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (is_page($page_id))?$selected = ' class=&#34;selected&#34;':$selected='';&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; echo &#34;&#60;li&#34;.$selected.&#34;&#62;&#60;a xhref=\&#34;&#34;.get_page_link($page_id).&#34;\&#34;&#62;Contact&#60;/a&#62;&#60;/li&#62;\n&#34;;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; elseif ($page_name == &#34;about_short&#34;) {/*ignore*/}&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; else {&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; (is_page($page_id))?$selected = ' class=&#34;selected&#34;':$selected='';&lt;br /&gt; &#160;&#160;&#160; &#160;&#160; &#160; &#160;&#160; &#160;&#160;&#160; echo &#34;&#60;li&#34;.$selected.&#34;&#62;&#60;a xhref=\&#34;&#34;.get_page_link($page_id).&#34;\&#34;&#62;$page_title&#60;/a&#62;&#60;/li&#62;\n&#34;;&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; &#160;&#160;&#160; }&lt;br /&gt; &#160;&#160;&#160; }&lt;br /&gt; ?&#62;&lt;br /&gt; &#60;/ul&#62;&lt;/code&gt;&lt;/p&gt; &lt;p&gt;in this case you would modify the class &#34;.selected&#34; from the stylesheet, to modify the look.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>the visual effect, might be different depending on the theme you use, some themes might not use default css styles. the blix theme uses the following code to highlight the selected menu item:</p>
<p><code>&lt;ul&gt;<br /> &nbsp;&nbsp;&nbsp; &lt;li&gt;&lt;?php if (is_home()) echo &quot; class=\&quot;selected\&quot;&quot;; ?&gt;&gt;&lt;a xhref=&quot;&lt;?php bloginfo(&#8217;url&#8217;); ?&gt;&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;<br /> &nbsp;&nbsp;&nbsp; &lt;?php	$pages = BX_get_pages();<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if ($pages) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; foreach ($pages as $page) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $page_id = $page-&gt;ID;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $page_title = $page-&gt;post_title;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $page_name = $page-&gt;post_name;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if ($page_name == &quot;archives&quot;) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (is_page($page_id) || is_archive() || is_search() || is_single())?$selected = &#8216; class=&quot;selected&quot;&#8217;:$selected=&#8221;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;li&quot;.$selected.&quot;&gt;&lt;a xhref=\&quot;&quot;.get_page_link($page_id).&quot;\&quot;&gt;Archives&lt;/a&gt;&lt;/li&gt;\n&quot;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elseif($page_name == &quot;about&quot;) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (is_page($page_id))?$selected = &#8216; class=&quot;selected&quot;&#8217;:$selected=&#8221;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;li&quot;.$selected.&quot;&gt;&lt;a xhref=\&quot;&quot;.get_page_link($page_id).&quot;\&quot;&gt;About&lt;/a&gt;&lt;/li&gt;\n&quot;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elseif ($page_name == &quot;contact&quot;) {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (is_page($page_id))?$selected = &#8216; class=&quot;selected&quot;&#8217;:$selected=&#8221;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;li&quot;.$selected.&quot;&gt;&lt;a xhref=\&quot;&quot;.get_page_link($page_id).&quot;\&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;\n&quot;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elseif ($page_name == &quot;about_short&quot;) {/*ignore*/}<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else {<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; (is_page($page_id))?$selected = &#8216; class=&quot;selected&quot;&#8217;:$selected=&#8221;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;li&quot;.$selected.&quot;&gt;&lt;a xhref=\&quot;&quot;.get_page_link($page_id).&quot;\&quot;&gt;$page_title&lt;/a&gt;&lt;/li&gt;\n&quot;;<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br /> &nbsp;&nbsp;&nbsp; }<br /> ?&gt;<br /> &lt;/ul&gt;</code></p>
<p>in this case you would modify the class &quot;.selected&quot; from the stylesheet, to modify the look.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic menu highlighting with WordPress by HektikLyfe</title>
		<link>http://www.gudstoff.com/2006/03/dynamic_menu/#comment-62</link>
		<dc:creator>HektikLyfe</dc:creator>
		<pubDate>Wed, 18 Oct 2006 17:05:57 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=13#comment-62</guid>
		<description>Hello, thanks for the informative post.

I use a different theme and for some reason modifying the css doesn't work.

It highlights them when I mouseover but not when it is the main page.

Any more ideas?</description>
		<content:encoded><![CDATA[<p>Hello, thanks for the informative post.</p>
<p>I use a different theme and for some reason modifying the css doesn&#8217;t work.</p>
<p>It highlights them when I mouseover but not when it is the main page.</p>
<p>Any more ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fight those nasty viruses by Administrator</title>
		<link>http://www.gudstoff.com/2006/08/fight-those-nasty-viruses/#comment-55</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Mon, 28 Aug 2006 03:10:26 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=16#comment-55</guid>
		<description>Here's an add-on to the post, another &lt;a href="http://www.free-av.com" rel="nofollow"&gt;free anti-virus&lt;/a&gt; you can checkout and use.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s an add-on to the post, another <a href="http://www.free-av.com" rel="nofollow">free anti-virus</a> you can checkout and use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Our dog Fonzi is 1 year old by Gudstoff &#187; Time is Precious</title>
		<link>http://www.gudstoff.com/2005/11/our-dog-fonzi-is-1-year-old/#comment-53</link>
		<dc:creator>Gudstoff &#187; Time is Precious</dc:creator>
		<pubDate>Sat, 26 Aug 2006 02:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=3#comment-53</guid>
		<description>[...] I can&#8217;t promise that I will post regularly, but I do hope to post more, &#34;at least more than 3 times a year&#34;&#8230; My dog Fonzi&#8217;s 2nd birthday will mark the first year of my Gudstoff Blog, this year, my goal will be to post more frequently, hopefully adding a few tutorials , and more than a couple of Net Pick. [...]</description>
		<content:encoded><![CDATA[<p>[...] I can&#8217;t promise that I will post regularly, but I do hope to post more, &quot;at least more than 3 times a year&quot;&#8230; My dog Fonzi&#8217;s 2nd birthday will mark the first year of my Gudstoff Blog, this year, my goal will be to post more frequently, hopefully adding a few tutorials , and more than a couple of Net Pick. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Our dog Fonzi is 1 year old by sam</title>
		<link>http://www.gudstoff.com/2005/11/our-dog-fonzi-is-1-year-old/#comment-3</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Sun, 04 Dec 2005 21:23:06 +0000</pubDate>
		<guid isPermaLink="false">http://gudstoff.com.s3099.gridserver.com/?p=3#comment-3</guid>
		<description>Cute doggie, happy birthday fonzi</description>
		<content:encoded><![CDATA[<p>Cute doggie, happy birthday fonzi</p>
]]></content:encoded>
	</item>
</channel>
</rss>
