<?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 for Shailan</title>
	<atom:link href="http://shailan.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://shailan.com</link>
	<description>Online tips &#38; resources for designers, bloggers &#38; freelancers</description>
	<lastBuildDate>Tue, 09 Mar 2010 23:45:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Dropdown Menu Widget by Mike</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-488</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 09 Mar 2010 23:45:37 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-488</guid>
		<description>li:hover is supported easily with the IE9.js as well as others that don&#039;t lag.. IE still reads li:hover but does nothing.

&gt; tells CSS to use the element after the one specified, IE reads this entire entry as UNDEFINED and can&#039;t do anything with it, which requires IE9.js specifically to allow this to work (or lengthy scripts that have similar functions).  Currently IE5.5 through 7 have no way to mimic that behavior in CSS, and loading IE9.js adds several seconds of &quot;frozen&quot; load time to a page.  

The only way to make it work natively in IE is to change your HTML markup to use hidden child elements inside of neighboring elements. Unfortunately it&#039;s technically not valid HTML to put block elements inside inline -.-;; well, with the li:hover js fix it&#039;s fine - my opinion is to include that js fix in and then change the HTML markup, put the hover menu ul&#039;s inside the parent li</description>
		<content:encoded><![CDATA[<p>li:hover is supported easily with the IE9.js as well as others that don&#8217;t lag.. IE still reads li:hover but does nothing.</p>
<p>&gt; tells CSS to use the element after the one specified, IE reads this entire entry as UNDEFINED and can&#8217;t do anything with it, which requires IE9.js specifically to allow this to work (or lengthy scripts that have similar functions).  Currently IE5.5 through 7 have no way to mimic that behavior in CSS, and loading IE9.js adds several seconds of &#8220;frozen&#8221; load time to a page.  </p>
<p>The only way to make it work natively in IE is to change your HTML markup to use hidden child elements inside of neighboring elements. Unfortunately it&#8217;s technically not valid HTML to put block elements inside inline -.-;; well, with the li:hover js fix it&#8217;s fine &#8211; my opinion is to include that js fix in and then change the HTML markup, put the hover menu ul&#8217;s inside the parent li</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropdown Menu Widget by shailan</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-487</link>
		<dc:creator>shailan</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:42:59 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-487</guid>
		<description>The dropdown ability of the menu depends on li:hover which is not currently supported by older versions of IE. &gt; is just another fix. For now this plugin only works for smart browsers.

Thanks for your additions.

Fix will be added soon.</description>
		<content:encoded><![CDATA[<p>The dropdown ability of the menu depends on li:hover which is not currently supported by older versions of IE. &gt; is just another fix. For now this plugin only works for smart browsers.</p>
<p>Thanks for your additions.</p>
<p>Fix will be added soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wordpress Countdown Widget by shailan</title>
		<link>http://shailan.com/wordpress/plugins/countdown/comment-page-1/#comment-486</link>
		<dc:creator>shailan</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:39:30 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=549#comment-486</guid>
		<description>Just install it through the wordpress add new plugin interface. Choose upload and then select the zip file you downloaded. After you activate the plugin you will see the countdown widget on your widgets panel.</description>
		<content:encoded><![CDATA[<p>Just install it through the wordpress add new plugin interface. Choose upload and then select the zip file you downloaded. After you activate the plugin you will see the countdown widget on your widgets panel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropdown Menu Widget by Mike</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-485</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 09 Mar 2010 20:16:58 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-485</guid>
		<description>The reason this isn&#039;t working right on IE6, 7, OR 8 Is because the author made no attempt to make it work. It is impossible to make this work in it&#039;s current state without editing the entire hover states of the CSS, as well as the HTML markup to be compatible with CSS hover action.

The &gt; operator has no support in IE until IE9.  However, this project http://code.google.com/p/ie7-js/ .. If you put that into your site it will allow it to work, since it gives IE6, 7, and 8 full support of the &gt; operator (which is key in this case for the menu to work)

To the author: My suggestion would be to put a note about that on the main page, or to change the menu so its compatible.  I don&#039;t think offering wordpress themes that deliberately ignore IE is a good idea without some sort of note saying it won&#039;t work.  Or at the very least say that it won&#039;t work in IE.</description>
		<content:encoded><![CDATA[<p>The reason this isn&#8217;t working right on IE6, 7, OR 8 Is because the author made no attempt to make it work. It is impossible to make this work in it&#8217;s current state without editing the entire hover states of the CSS, as well as the HTML markup to be compatible with CSS hover action.</p>
<p>The &gt; operator has no support in IE until IE9.  However, this project <a href="http://code.google.com/p/ie7-js/" rel="nofollow">http://code.google.com/p/ie7-js/</a> .. If you put that into your site it will allow it to work, since it gives IE6, 7, and 8 full support of the &gt; operator (which is key in this case for the menu to work)</p>
<p>To the author: My suggestion would be to put a note about that on the main page, or to change the menu so its compatible.  I don&#8217;t think offering wordpress themes that deliberately ignore IE is a good idea without some sort of note saying it won&#8217;t work.  Or at the very least say that it won&#8217;t work in IE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropdown Menu Widget by Dan H</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-470</link>
		<dc:creator>Dan H</dc:creator>
		<pubDate>Tue, 02 Mar 2010 19:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-470</guid>
		<description>Hi, 

I just recently installed this and was wondering if it was possible to change the order the posts line up in? As in - would I be able to do it alphabetically? Or a custom order? 

Thanks, 
Dan</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I just recently installed this and was wondering if it was possible to change the order the posts line up in? As in &#8211; would I be able to do it alphabetically? Or a custom order? </p>
<p>Thanks,<br />
Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropdown Menu Widget by Rob</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-441</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 18 Feb 2010 11:03:13 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-441</guid>
		<description>I&#039;ve found this plug-in which solves the problem, it allows you to change the link of a page to anything you like, including &#039;#&#039;

http://wordpress.org/extend/plugins/page-links-to/</description>
		<content:encoded><![CDATA[<p>I&#8217;ve found this plug-in which solves the problem, it allows you to change the link of a page to anything you like, including &#8216;#&#8217;</p>
<p><a href="http://wordpress.org/extend/plugins/page-links-to/" rel="nofollow">http://wordpress.org/extend/plugins/page-links-to/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropdown Menu Widget by Rob</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-440</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Thu, 18 Feb 2010 10:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-440</guid>
		<description>Thanks for a great plug-in...

Is it possible to disable the top-level parent link?  
That page on my site is blank, only the nested pages have content.
Even if I could change the link to &#039;#&#039; that would do it.

Thanks, Rob.</description>
		<content:encoded><![CDATA[<p>Thanks for a great plug-in&#8230;</p>
<p>Is it possible to disable the top-level parent link?<br />
That page on my site is blank, only the nested pages have content.<br />
Even if I could change the link to &#8216;#&#8217; that would do it.</p>
<p>Thanks, Rob.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropdown Menu Widget by robert elliott</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-436</link>
		<dc:creator>robert elliott</dc:creator>
		<pubDate>Wed, 10 Feb 2010 13:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-436</guid>
		<description>I changed the overflow visible in the style.css but nothing changed...is there somewhere else that it needs to be changed... I looked through the docs for the widget itself but could not find where there was anything about overflow...please help!

Thanks

R</description>
		<content:encoded><![CDATA[<p>I changed the overflow visible in the style.css but nothing changed&#8230;is there somewhere else that it needs to be changed&#8230; I looked through the docs for the widget itself but could not find where there was anything about overflow&#8230;please help!</p>
<p>Thanks</p>
<p>R</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropdown Menu Widget by robert elliott</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-434</link>
		<dc:creator>robert elliott</dc:creator>
		<pubDate>Tue, 09 Feb 2010 18:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-434</guid>
		<description>I am having the problem with the overlapping containers...I did not see a fix...great freaking plugin by the way! I would love it if I could use it in my site.

thanks

r</description>
		<content:encoded><![CDATA[<p>I am having the problem with the overlapping containers&#8230;I did not see a fix&#8230;great freaking plugin by the way! I would love it if I could use it in my site.</p>
<p>thanks</p>
<p>r</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dropdown Menu Widget by dandy</title>
		<link>http://shailan.com/wordpress/plugins/dropdown-menu/comment-page-1/#comment-433</link>
		<dc:creator>dandy</dc:creator>
		<pubDate>Tue, 09 Feb 2010 12:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://shailan.com/?page_id=297#comment-433</guid>
		<description>i cant get it work on IE6. my dropdowns wont show up. :(</description>
		<content:encoded><![CDATA[<p>i cant get it work on IE6. my dropdowns wont show up. :(</p>
]]></content:encoded>
	</item>
</channel>
</rss>
