<?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"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Easy CSS Dropdown Menus</title> <atom:link href="http://www.cssnewbie.com/easy-css-dropdown-menus/feed/" rel="self" type="application/rss+xml" /><link>http://www.cssnewbie.com/easy-css-dropdown-menus/</link> <description>Web Development Tutorials, Tips &#38; Techniques</description> <lastBuildDate>Wed, 10 Mar 2010 20:15:38 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.1</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Elaine</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11311</link> <dc:creator>Elaine</dc:creator> <pubDate>Sat, 06 Mar 2010 07:02:28 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11311</guid> <description>Hello, I love the dropdown you&#039;ve made, but I&#039;m having a problem. I am VERY new to CSS and am having a really hard time.
I just want to center my nav bar. I know you&#039;ve covered this, but I just can&#039;t get it to work. I can&#039;t seem to figure out where to put the:width: 200 px;
margin: auto;that I saw Richard Myers and you talk about. I hate it that I need you to be more specific.  Here is what I have:/* These styles create the dropdown menus. */#navbar {
margin: 0;
padding: 0;
height: 1em; }
#navbar li {
list-style: none;
float: left; }
#navbar li a {
display: block;
padding: 3px 8px;
background-color: #FFFFFF;
color: #000000;
text-decoration: none; }
#navbar li ul {
display: none;
width: 10em; /* Width to help Opera out */
background-color: #69f;}
#navbar li:hover ul, #navbar li.hover ul {
display: block;
position: absolute;
margin: 0;
padding: 0; }
#navbar li:hover li, #navbar li.hover li {
float: none; }
#navbar li:hover li a, #navbar li.hover li a {
background-color: #000000;
border-bottom: 1px solid #fff;
color: #fff; }
#navbar li li a:hover {
background-color: #000000; }// Javascript originally by Patrick Griffiths and Dan Webb.
// http://htmldog.com/articles/suckerfish/dropdowns/
sfHover = function() {
var sfEls =document.getElementById(&quot;navbar&quot;).getElementsByTagName(&quot;li&quot;);
for (var i=0; i&lt;sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=&quot; hover&quot;;
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(&quot;hover\\b&quot;), &quot;&quot;);
}
}
}
if (window.attachEvent) window.attachEvent(&quot;onload&quot;, sfHover);I would appreciate any help!!!
Thanks
Elaine</description> <content:encoded><![CDATA[<p>Hello, I love the dropdown you&#8217;ve made, but I&#8217;m having a problem. I am VERY new to CSS and am having a really hard time.<br
/> I just want to center my nav bar. I know you&#8217;ve covered this, but I just can&#8217;t get it to work. I can&#8217;t seem to figure out where to put the:</p><p>width: 200 px;<br
/> margin: auto;</p><p>that I saw Richard Myers and you talk about. I hate it that I need you to be more specific.  Here is what I have:</p><p>/* These styles create the dropdown menus. */</p><p>#navbar {<br
/> margin: 0;<br
/> padding: 0;<br
/> height: 1em; }<br
/> #navbar li {<br
/> list-style: none;<br
/> float: left; }<br
/> #navbar li a {<br
/> display: block;<br
/> padding: 3px 8px;<br
/> background-color: #FFFFFF;<br
/> color: #000000;<br
/> text-decoration: none; }<br
/> #navbar li ul {<br
/> display: none;<br
/> width: 10em; /* Width to help Opera out */<br
/> background-color: #69f;}<br
/> #navbar li:hover ul, #navbar li.hover ul {<br
/> display: block;<br
/> position: absolute;<br
/> margin: 0;<br
/> padding: 0; }<br
/> #navbar li:hover li, #navbar li.hover li {<br
/> float: none; }<br
/> #navbar li:hover li a, #navbar li.hover li a {<br
/> background-color: #000000;<br
/> border-bottom: 1px solid #fff;<br
/> color: #fff; }<br
/> #navbar li li a:hover {<br
/> background-color: #000000; }</p><p>// Javascript originally by Patrick Griffiths and Dan Webb.<br
/> // <a
href="http://htmldog.com/articles/suckerfish/dropdowns/" rel="nofollow">http://htmldog.com/articles/suckerfish/dropdowns/</a><br
/> sfHover = function() {<br
/> var sfEls =</p><p>document.getElementById(&#8220;navbar&#8221;).getElementsByTagName(&#8220;li</p><p>&#8220;);<br
/> for (var i=0; i&lt;sfEls.length; i++) {<br
/> sfEls[i].onmouseover=function() {<br
/> this.className+=&quot; hover&quot;;<br
/> }<br
/> sfEls[i].onmouseout=function() {<br
/> this.className=this.className.replace(new RegExp(&quot;</p><p>hover\\b&quot;), &quot;&quot;);<br
/> }<br
/> }<br
/> }<br
/> if (window.attachEvent) window.attachEvent(&quot;onload&quot;, sfHover);</p><p>I would appreciate any help!!!<br
/> Thanks<br
/> Elaine</p> ]]></content:encoded> </item> <item><title>By: Steph</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11303</link> <dc:creator>Steph</dc:creator> <pubDate>Thu, 04 Mar 2010 20:51:21 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11303</guid> <description>Hi there!
I&#039;ve managed to get it working, yay! Thanks for your help - can I dig a little further?Firstly, a minor thing, my dropdowns don&#039;t have a border, apart from the on the right hand side? There was one place in my code that only had a border on the right hand side, and I adapted that, but no change? I may just have become blinded to it from having been looking at it all day.Here&#039;s the code..#nav
{
width: 100%;
float: left;
margin-left:auto;
height: 26px;
padding: 0;
list-style:none;
background-color: #9acab4;
border-bottom: 1px solid #117478;
border-top: 1px solid #117478;
border-right: 1px solid #117478;
}
#nav li
{
float: left;
list-style:none;
}
#nav li a
{
display:block;
padding: 3px 8px;
text-decoration:none;
font-weight: bold;
font-size:16px;
color: #043c52;
border-right: 1px solid #117478;
border-bottom: 1 px solid #117478;
border-left: 1 px solid #117478;
}
#nav li ul
{
display:none;
width:10em;
background-color:#9acab4;
}
#nav li:hover ul, #nav li.hover ul
{
display:block;
position:absolute;
margin: 0;
padding: 0;
}
#nav li:hover li, #nav li.hover li
{
float:none;
}
#na li:hover li a, #nav li.hover li a
{
background-color:9acab4;
border-bottom: 1px solid #117478;
border-right: 1px solid #117478;
border-left: 1px solid #117478;
color: #043c52;
}
#nav li li a:hover
{
background-color:#9acab4;
}Also, now I need to make it multi-level, and trying to reconcile what the sons of suckerfish tutorial says about making that happen with what I&#039;ve already done from here is beyond confusing, do you have a tutorial about making this multi-level?Thanks if you can offer any help, I&#039;m learning all of this as I go along and haven&#039;t got used to it much yet!Steph</description> <content:encoded><![CDATA[<p>Hi there!<br
/> I&#8217;ve managed to get it working, yay! Thanks for your help &#8211; can I dig a little further?</p><p>Firstly, a minor thing, my dropdowns don&#8217;t have a border, apart from the on the right hand side? There was one place in my code that only had a border on the right hand side, and I adapted that, but no change? I may just have become blinded to it from having been looking at it all day.</p><p>Here&#8217;s the code..</p><p>#nav<br
/> {<br
/> width: 100%;<br
/> float: left;<br
/> margin-left:auto;<br
/> height: 26px;<br
/> padding: 0;<br
/> list-style:none;<br
/> background-color: #9acab4;<br
/> border-bottom: 1px solid #117478;<br
/> border-top: 1px solid #117478;<br
/> border-right: 1px solid #117478;<br
/> }<br
/> #nav li<br
/> {<br
/> float: left;<br
/> list-style:none;<br
/> }<br
/> #nav li a<br
/> {<br
/> display:block;<br
/> padding: 3px 8px;<br
/> text-decoration:none;<br
/> font-weight: bold;<br
/> font-size:16px;<br
/> color: #043c52;<br
/> border-right: 1px solid #117478;<br
/> border-bottom: 1 px solid #117478;<br
/> border-left: 1 px solid #117478;<br
/> }<br
/> #nav li ul<br
/> {<br
/> display:none;<br
/> width:10em;<br
/> background-color:#9acab4;<br
/> }<br
/> #nav li:hover ul, #nav li.hover ul<br
/> {<br
/> display:block;<br
/> position:absolute;<br
/> margin: 0;<br
/> padding: 0;<br
/> }<br
/> #nav li:hover li, #nav li.hover li<br
/> {<br
/> float:none;<br
/> }<br
/> #na li:hover li a, #nav li.hover li a<br
/> {<br
/> background-color:9acab4;<br
/> border-bottom: 1px solid #117478;<br
/> border-right: 1px solid #117478;<br
/> border-left: 1px solid #117478;<br
/> color: #043c52;<br
/> }<br
/> #nav li li a:hover<br
/> {<br
/> background-color:#9acab4;<br
/> }</p><p>Also, now I need to make it multi-level, and trying to reconcile what the sons of suckerfish tutorial says about making that happen with what I&#8217;ve already done from here is beyond confusing, do you have a tutorial about making this multi-level?</p><p>Thanks if you can offer any help, I&#8217;m learning all of this as I go along and haven&#8217;t got used to it much yet!</p><p>Steph</p> ]]></content:encoded> </item> <item><title>By: Rob Glazebrook</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11300</link> <dc:creator>Rob Glazebrook</dc:creator> <pubDate>Thu, 04 Mar 2010 14:30:21 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11300</guid> <description>Hi Steph,From what I can see of your CSS, you&#039;re not floating the list items left. Without that, your lists will behave like normal lists and stack vertically instead of horizontally.</description> <content:encoded><![CDATA[<p>Hi Steph,</p><p>From what I can see of your CSS, you&#8217;re not floating the list items left. Without that, your lists will behave like normal lists and stack vertically instead of horizontally.</p> ]]></content:encoded> </item> <item><title>By: Steph</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11299</link> <dc:creator>Steph</dc:creator> <pubDate>Thu, 04 Mar 2010 13:43:12 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11299</guid> <description>This is awesome, and just what I&#039;ve been trying to find! I&#039;ve been trying for a couple of days to figure out a problem though. I cannot for the life of me get my links to be side by side, as yours are, with the menu dropping beneath them, only in a vertical list, so when the submenu appears nothing is legible. I just can&#039;t figure out where I&#039;m going wrong! Here&#039;s my CSS for the navigation:#navigation
{
text-align:center;
}
#navigation p
{
margin-top: 0px;
}
#nav, #nav ul
{
padding: 0;
margin: 0;
list-style:none;
}
#nav a
{
width: 800px;
}
#nav li
{
width: 800px;
}
#nav li ul
{
position: absolute;
width: 800px;
left: -999em;
}
#nav li:hover ul, #nav li.sfhover ul
{
left:auto;
}Where am I going wrong?! This is driving me nuts!</description> <content:encoded><![CDATA[<p>This is awesome, and just what I&#8217;ve been trying to find! I&#8217;ve been trying for a couple of days to figure out a problem though. I cannot for the life of me get my links to be side by side, as yours are, with the menu dropping beneath them, only in a vertical list, so when the submenu appears nothing is legible. I just can&#8217;t figure out where I&#8217;m going wrong! Here&#8217;s my CSS for the navigation:</p><p>#navigation<br
/> {<br
/> text-align:center;<br
/> }<br
/> #navigation p<br
/> {<br
/> margin-top: 0px;<br
/> }<br
/> #nav, #nav ul<br
/> {<br
/> padding: 0;<br
/> margin: 0;<br
/> list-style:none;<br
/> }<br
/> #nav a<br
/> {<br
/> width: 800px;<br
/> }<br
/> #nav li<br
/> {<br
/> width: 800px;<br
/> }<br
/> #nav li ul<br
/> {<br
/> position: absolute;<br
/> width: 800px;<br
/> left: -999em;<br
/> }<br
/> #nav li:hover ul, #nav li.sfhover ul<br
/> {<br
/> left:auto;<br
/> }</p><p>Where am I going wrong?! This is driving me nuts!</p> ]]></content:encoded> </item> <item><title>By: ChingH</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11288</link> <dc:creator>ChingH</dc:creator> <pubDate>Wed, 03 Mar 2010 18:53:16 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11288</guid> <description>Hi Rob,
Thanks for your post.
I had a web page which was built up by a Master page and a content page. In my master page, I added a TopContent and a navigation bar underneath the TopContent. MainContent was put in the content page. The first time I moved the mouse on the navigation bar, every thing was fine. The dropdown menu was on top of default page. It was supposed to be. The problem is the second time when I move the mouse on the navigation bar. The dropdown submenu was covered by the MainContent. I took the code from Easy CSS Dropdown Menus as an example. I am not sure why. I am using VS 2008 in XP and one IE6 and one IE7.
I would appreciate if you can help me out of this problem. Thanks.
chingH</description> <content:encoded><![CDATA[<p>Hi Rob,<br
/> Thanks for your post.<br
/> I had a web page which was built up by a Master page and a content page. In my master page, I added a TopContent and a navigation bar underneath the TopContent. MainContent was put in the content page. The first time I moved the mouse on the navigation bar, every thing was fine. The dropdown menu was on top of default page. It was supposed to be. The problem is the second time when I move the mouse on the navigation bar. The dropdown submenu was covered by the MainContent. I took the code from Easy CSS Dropdown Menus as an example. I am not sure why. I am using VS 2008 in XP and one IE6 and one IE7.<br
/> I would appreciate if you can help me out of this problem. Thanks.<br
/> chingH</p> ]]></content:encoded> </item> <item><title>By: Jeremy</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11230</link> <dc:creator>Jeremy</dc:creator> <pubDate>Mon, 22 Feb 2010 02:55:58 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11230</guid> <description>Hey, this is pretty rad.  I&#039;ve been wanting to get my brain around this for a while.  I thought I had, thanks to your post here, but I&#039;m having a tiny bit of trouble.  It works fine in IE (shock), but in all other browsers, the drop-downs disappear before the user has a chance to hover over them.  As soon as the mouse focus leaves the navbar ul, the drop-down stuff disappears.  Any idea what I may have missed?</description> <content:encoded><![CDATA[<p>Hey, this is pretty rad.  I&#8217;ve been wanting to get my brain around this for a while.  I thought I had, thanks to your post here, but I&#8217;m having a tiny bit of trouble.  It works fine in IE (shock), but in all other browsers, the drop-downs disappear before the user has a chance to hover over them.  As soon as the mouse focus leaves the navbar ul, the drop-down stuff disappears.  Any idea what I may have missed?</p> ]]></content:encoded> </item> <item><title>By: Jeremy</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11205</link> <dc:creator>Jeremy</dc:creator> <pubDate>Tue, 09 Feb 2010 16:20:08 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11205</guid> <description>Hi Rob,Thanks for the post. Very helpful.I&#039;m wondering if there&#039;s a way to keep the top menu items (#navbar li a:hover) activated while hovering over the submenu (#navbar li li a)?I need a specific background position on the top menu items so both the top menus and sub menus appear continuous. Very similar to how it looks on www.target.com for example.Thanks in advance!</description> <content:encoded><![CDATA[<p>Hi Rob,</p><p>Thanks for the post. Very helpful.</p><p>I&#8217;m wondering if there&#8217;s a way to keep the top menu items (#navbar li a:hover) activated while hovering over the submenu (#navbar li li a)?</p><p>I need a specific background position on the top menu items so both the top menus and sub menus appear continuous. Very similar to how it looks on <a
href="http://www.target.com" rel="nofollow">http://www.target.com</a> for example.</p><p>Thanks in advance!</p> ]]></content:encoded> </item> <item><title>By: Saint John Web Design &#124; Informative Computer Solutions &#187; Blog Archive &#187; A Super Simple Horizontal Navigation Bar</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11193</link> <dc:creator>Saint John Web Design &#124; Informative Computer Solutions &#187; Blog Archive &#187; A Super Simple Horizontal Navigation Bar</dc:creator> <pubDate>Sun, 07 Feb 2010 04:29:58 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11193</guid> <description>[...] occurs to me that, while I&#8217;ve written tutorials on tabbed navigation bars, dropdown navigation bars, and even horizontal dropdown navigation bars, I&#8217;ve never stopped to explain how to build a [...]</description> <content:encoded><![CDATA[<p>[...] occurs to me that, while I&#8217;ve written tutorials on tabbed navigation bars, dropdown navigation bars, and even horizontal dropdown navigation bars, I&#8217;ve never stopped to explain how to build a [...]</p> ]]></content:encoded> </item> <item><title>By: Kenny</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-11187</link> <dc:creator>Kenny</dc:creator> <pubDate>Sat, 06 Feb 2010 11:20:31 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-11187</guid> <description>Thanks a bunch!</description> <content:encoded><![CDATA[<p>Thanks a bunch!</p> ]]></content:encoded> </item> <item><title>By: Susan L</title><link>http://www.cssnewbie.com/easy-css-dropdown-menus/comment-page-2/#comment-10702</link> <dc:creator>Susan L</dc:creator> <pubDate>Sat, 23 Jan 2010 22:28:12 +0000</pubDate> <guid
isPermaLink="false">http://www.cssnewbie.com/?p=119#comment-10702</guid> <description>Hi. I am desperate for help. Have been trying for days to get this drop down menu to work in IE6. It shows the main menu items as vertical, not horizontal in IE6 and earlier. The website is 2 columns with a header and a footer. Here&#039;s the navbar CSS if someone would be kind enough to look.#navbar {
margin: 0;
padding: 0;
background-color:#5CACEE;
height: 20px; }
#navbar li {
list-style: none;
float: left; }
#navbar li a {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: bold;
display: block;
height: 18px;
padding: 1px 12px;
background-color: #5CACEE;
color: #fff;
text-decoration: none; }
#navbar li ul {
display: none;
width: 11em; /* Width to help Opera out */
background-color: #5CACEE;}
#navbar li:hover ul, #navbar li.hover ul {
display: block;
position: absolute;
margin: 0;
padding: 0; }
#navbar li:hover li, #navbar li.hover li {
float: none; }
#navbar li:hover li a, #navbar li.hover li a {
background-color: #5CACEE;
border-bottom: 1px solid #fff;
color: #fff; }And here&#039;s part of the html...sfHover = function() {
var sfEls = document.getElementById(&quot;navbar&quot;).getElementsByTagName(&quot;li&quot;);
for (var i=0; i&lt;sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=&quot; hover&quot;;
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(&quot; hover\\b&quot;), &quot;&quot;);
}
}
}
if (window.attachEvent) window.attachEvent(&quot;onload&quot;, sfHover);
&lt;!-- The strange spacing herein prevents an IE6 whitespace bug. --&gt;
&lt;a href=&quot;index.html&quot; rel=&quot;nofollow&quot;&gt;&#160;&#160;Home&lt;/a&gt;
&lt;a href=&quot;specials.html&quot; rel=&quot;nofollow&quot;&gt;SPECIAL OFFERS&lt;/a&gt;
&lt;a href=&quot;specials.html&quot; rel=&quot;nofollow&quot;&gt;Current Specials&lt;/a&gt;
&lt;a href=&quot;machinespecials.html&quot; rel=&quot;nofollow&quot;&gt;Stock Machine Specials&lt;/a&gt;
...etc.It works perfectly everywhere else, but in IE6 the navbar gets huge with a vertical list of the primary menu items on the left side of the screen.Thanks in advance for any assistance.</description> <content:encoded><![CDATA[<p>Hi. I am desperate for help. Have been trying for days to get this drop down menu to work in IE6. It shows the main menu items as vertical, not horizontal in IE6 and earlier. The website is 2 columns with a header and a footer. Here&#8217;s the navbar CSS if someone would be kind enough to look.</p><p>#navbar {<br
/> margin: 0;<br
/> padding: 0;<br
/> background-color:#5CACEE;<br
/> height: 20px; }<br
/> #navbar li {<br
/> list-style: none;<br
/> float: left; }<br
/> #navbar li a {<br
/> font-family: Verdana, Arial, Helvetica, sans-serif;<br
/> font-size: 12px;<br
/> font-style: bold;<br
/> display: block;<br
/> height: 18px;<br
/> padding: 1px 12px;<br
/> background-color: #5CACEE;<br
/> color: #fff;<br
/> text-decoration: none; }<br
/> #navbar li ul {<br
/> display: none;<br
/> width: 11em; /* Width to help Opera out */<br
/> background-color: #5CACEE;}<br
/> #navbar li:hover ul, #navbar li.hover ul {<br
/> display: block;<br
/> position: absolute;<br
/> margin: 0;<br
/> padding: 0; }<br
/> #navbar li:hover li, #navbar li.hover li {<br
/> float: none; }<br
/> #navbar li:hover li a, #navbar li.hover li a {<br
/> background-color: #5CACEE;<br
/> border-bottom: 1px solid #fff;<br
/> color: #fff; }</p><p>And here&#8217;s part of the html&#8230;</p><p>sfHover = function() {<br
/> var sfEls = document.getElementById(&#8220;navbar&#8221;).getElementsByTagName(&#8220;li&#8221;);<br
/> for (var i=0; i&lt;sfEls.length; i++) {<br
/> sfEls[i].onmouseover=function() {<br
/> this.className+=&quot; hover&quot;;<br
/> }<br
/> sfEls[i].onmouseout=function() {<br
/> this.className=this.className.replace(new RegExp(&quot; hover\\b&quot;), &quot;&quot;);<br
/> }<br
/> }<br
/> }<br
/> if (window.attachEvent) window.attachEvent(&quot;onload&quot;, sfHover);</p><p> <br
/> <a
href="index.html" rel="nofollow">&nbsp;&nbsp;Home</a><br
/> <a
href="specials.html" rel="nofollow">SPECIAL OFFERS</a></p><p> <a
href="specials.html" rel="nofollow">Current Specials</a><br
/> <a
href="machinespecials.html" rel="nofollow">Stock Machine Specials</a></p><p>&#8230;etc.</p><p>It works perfectly everywhere else, but in IE6 the navbar gets huge with a vertical list of the primary menu items on the left side of the screen.</p><p>Thanks in advance for any assistance.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 5/20 queries in 0.096 seconds using disk

Served from: rhetorclick.com @ 2010-03-11 00:20:52 -->